Django-admin Startproject Results In "modulenotfounderror: No Module Named 'config'"
My setup is: - Mac OS running pyenv installed with homebrew. - python 3.6.5 virtualenv - pip install Django==2.0.6 Here is the command I issued and the output. The only answers I'
Solution 1:
Check if the environment variable DJANGO_SETTINGS_MODULE
is set and unset it if it is. E.g. in bash
$ unset DJANGO_SETTINGS_MODULE
Solution 2:
For Windows users try this on the command line:
set DJANGO_SETTINGS_MODULE=
Post a Comment for "Django-admin Startproject Results In "modulenotfounderror: No Module Named 'config'""