我正在从官方文档学习Django,在https://docs.djangoproject.com/en/1.7/intro/tutorial01/完成教程时,我坚持创建一个项目部分。
当我运行django-admin.py startproject mysite
时,我收到以下错误
C:\Python34>django-admin.py startproject mysite
Usage: django-admin.py subcommand [options] [args]
Options:
-v VERBOSITY, --verbosity=VERBOSITY
Verbosity level; 0=minimal output, 1=normal output,
2=verbose output, 3=very verbose output
--settings=SETTINGS The Python path to a settings module, e.g.
"myproject.settings.main". If this isn't provided, the
DJANGO_SETTINGS_MODULE environment variable will be
used.
--pythonpath=PYTHONPATH
A directory to add to the Python path, e.g.
"/home/djangoprojects/myproject".
--traceback Raise on exception
--no-color Don't colorize the command output.
--version show program's version number and exit
-h, --help show this help message and exit
Type 'django-admin.py help <subcommand>' for help on a specific subcommand.
Available subcommands:
[django]
check
compilemessages
createcachetable
dbshell
diffsettings
dumpdata
flush
inspectdb
loaddata
makemessages
makemigrations
migrate
runfcgi
runserver
shell
sql
sqlall
sqlclear
sqlcustom
sqldropindexes
sqlflush
sqlindexes
sqlinitialdata
sqlmigrate
sqlsequencereset
squashmigrations
startapp
startproject
syncdb
test
testserver
validate
请注意,由于未正确配置设置,因此仅列出Django核心命令
error: Requested setting INSTALLED_APPS, but settings are not configured
. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.).
我正在使用Python 3.4.1和django 1.7。我没有安装任何其他Django版本,这是我正在创建的第一个项目。
答案 0 :(得分:20)
你可以运行django-admin startproject mysite
(注意:不是django-admin.py
),因为如果你通过pip安装django,一个名为'django-admin.exe'的可执行程序将添加到' C:\ Python34 \ Scripts ',它通常在您的环境变量'PATH'中(如果没有,将其添加到PATH中)。
答案 1 :(得分:1)
在安装 Django 2.0.5 时,我遇到了同样的问题。可以使用虚拟环境解决。
环境详细信息:
步骤:
pip install virtualenv
virtualenv --python=python3 VEnv
cd VEnv/
source bin/activate
pip install django==2.0.5
django-admin startproject HelloDot
cd HelloDot/
python manage.py runserver 8000
有关更多详细信息,请看以下内容:https://www.howtoforge.com/tutorial/how-to-install-django-on-ubuntu/
答案 2 :(得分:-1)
请确保您遵循troubleshooting guide,因为您的系统路径上看起来没有正确的django-admin.py。来自文档:
如果你安装了Django,那么django-admin.py应该在你的系统路径上 通过python setup.py。如果它不在您的路径上,您可以找到它 site-packages / django / bin,其中site-packages是其中的目录 你的Python安装。考虑从符号链接到django-admin.py 您路径上的某个位置,例如/ usr / local / bin。
您还应该为每个项目使用virtualenv,以允许隔离每个项目的依赖项并更轻松地管理它们。 virtualenvwrapper是创建和管理virtualenvs的有用工具。