运行Python 2.7 Mac OSX。
我做了:
django-admin.py startproject test123
cd test123
open settings.py
错误: /users.../test123/settings.py
不存在。
为什么会这样?
答案 0 :(得分:1)
默认情况下,如果不存在,django会创建名为test123
的文件夹,然后将设置放在名为test123
https://docs.djangoproject.com/en/1.10/ref/django-admin/#startproject
因此,您的设置将位于test123
test123
子文件夹中
django-admin.py startproject test123
cd test123
ls -la
open test123/settings.py