Home > OS >  ModuleNotFoundError: No module named 'django_rest_passwordreset'
ModuleNotFoundError: No module named 'django_rest_passwordreset'

Time:08-11

I have tried to Create a Django Superuser Account for my Project by using: 'python manage.py createsuperuser' on the command Prompt error occurred - ModuleNotFoundError: No module named 'django_rest_passwordreset'

CodePudding user response:

The Python ModuleNotFoundError: No module named 'module_name' occurs when we forget to install that module before importing it or installing it in an incorrect environment. To solve the error, install the module by running the pip install module_name command

In this scenario, the module is named as django-rest-passwordreset.

You can install that by running that command.

pip install django-rest-passwordreset

You can visit the docs for further details about that module.

  • Related