django-user_agents icon indicating copy to clipboard operation
django-user_agents copied to clipboard

Module Not Found.

Open ghost opened this issue 5 years ago • 1 comments

Followed every steps provided in documentation but still it gives the following error while migrating.

Traceback (most recent call last):
  File "manage.py", line 23, in <module>
    main()
  File "manage.py", line 19, in main
    execute_from_command_line(sys.argv)
  File "/usr/local/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
    utility.execute()
  File "/usr/local/lib/python3.8/site-packages/django/core/management/__init__.py", line 377, in execute
    django.setup()
  File "/usr/local/lib/python3.8/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/usr/local/lib/python3.8/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
  File "/usr/local/lib/python3.8/site-packages/django/apps/config.py", line 90, in create
    module = import_module(entry)
  File "/usr/local/Cellar/[email protected]/3.8.6/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'django_user_agents'

ghost avatar Oct 27 '20 06:10 ghost

I was facing the same error. Based on the settings of your django project, you would have to add the module in your requirements.txt file for the respective environments.

Check if the package is listed in your project's requirements.txt file. If not, you can add it manually by running the following command (while in your project's virtual environment):

pip freeze > requirements.txt

nishamishra12 avatar Jun 28 '23 18:06 nishamishra12