Omnia Magd
Omnia Magd

Reputation: 402

How solve ImportError: No module named fcm_django error in python

When running python manage.py runserver get this error

ImportError: No module named fcm_django???

I run this command

pip install django-fcm  --process-dependency-links

this can't solve anything

how i solve it??

Upvotes: 1

Views: 2592

Answers (2)

Ali
Ali

Reputation: 59

try pip3 install fcm-django

or check your python path!

Upvotes: 0

Omnia Magd
Omnia Magd

Reputation: 402

You can use

pip install fcm-django

it will solve this error

Upvotes: 1

Related Questions