今天看到django的tt,执行manage.py shell的时候老是失败,仔细看了一下说明,发现一段小字:
Putting mysite on sys.path . For flexibility, several pieces of Django refer to projects in Python dotted-path notation (e.g. 'mysite.polls.models' ). In order for this to work, the mysite package has to be on sys.path .
We've already seen one example of this: the INSTALLED_APPS setting is a list of packages in dotted-path notation.
Setting the DJANGO_SETTINGS_MODULE environment variable, which gives Django the path to your settings.py file.
原来要先设置sys.path和DJANGO_SETTINGS_MODULE两个字段,可是sys.path是什么?怎么设置呢?
在windows下面:
新增环境变量 : PYTHONPATH 值为自定义的地址,如果有多个路径则需要分号分隔,如:D:\AA;D:\BB
之后打开python 看看:
import sys
prtin sys.path → 结果为 : ‘’,’D:\\AA’,’D:\\BB’,’C:\\WINDOWS\\system32\\python25.zip’….
注:不需要增加子目录,因为在目录中我们有 __init__.py
访问方式:
假设有文件夹AA,AA下有文件夹BB,BB目录下有test.py、test1.py 两个脚本
环境变量设置为D:\AA,在 AA目录下建__init__.py里面写上import BB(文件夹),在BB目录下新建__init__.py 放空
运行时只需要 import BB.test / import BB.test1 即可
在LINUX下的\ETC目錄中,找到bashrc, 在最後一行中加入”export PYTHONPATH=你要設定的路徑” 重啟,OK!!
更简单的:
就是在运行期临时加上路径,修改 sys.path[0]=路径 就可以
DJANGO_SETTINGS_MODULE在windows下面:
增加环境变量:DJANGO_SETTINGS_MODULE = mysite.settings
这样,接下来你就可以运行http://docs.djangoproject.com/en/dev/intro/tutorial01/#intro-tutorial01里面