标签:
when i try to give the environment variable "DJANGO_SETTINGS_MODULE" a path, for example,
DJANGO_SETTINGS_MODULE=mysite_settings,
DJANGO_SETTINGS_MODULE=/home/wgz/my_project/mysite/mysite.settings,
then i type the command "python3 manage.py shell", a "ImportError: No module named ‘/home/wgz/my_project/" comes up.
after seaching some materials, i got a method by typing "os.environ[‘DJANGO_SETTINGS_MODULES‘]=‘mysite.settings‘", then the "ImportError" disappear. of course, this is in the Python environment and import os in advance.
标签:
原文地址:http://www.cnblogs.com/bajunma123/p/5263932.html