Django开发服务器将无法运行

时间:2014-12-25 17:41:33

标签: python django server

我使用Python 3.4.2和Django 1.7.1

我已经能够创建一个名为mysite的文件夹,其内容如教程中所示。

但是当我运行命令manage.py runserver时没有任何反应:

C:\Users\thEpuQ8f\Dropbox\zephyrus>manage.py runserver

我在命令行中收到以下消息:

Usage: manage.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 'manage.py help <subcommand>' for help on a specific subcommand.

Available subcommands:

# and so forth

1 个答案:

答案 0 :(得分:1)

你可能没有正确的PYTHONPATH。

你知道在Windows上对我有用的东西。

  

我的电脑&gt;属性&gt;高级系统设置&gt;环境    变量&gt;

然后在系统变量下,我创建了一个名为PythonPath的新变量。

  

C:\ Python34; C:\ Python34 \库; C:\ Python34 \的DLL;

Python34是Python的文件夹。我不知道python3的正确文件夹名称是什么。使用安装程序安装Python时,应自动创建PYTHONPATH。最糟糕的情况是你只需要重新安装它。

enter image description here

来源:https://stackoverflow.com/a/4855685/73010