Nothing happens when I do: python manage.py comman

2019-02-27 22:25发布

I'm new to django and currently going through the main tutorial. Even though it was working earlier, when I do python manage.py runserver OR python manage.py -h OR with any other command, the shell doesn't output anything. Wondering what I'm doing wrong.

1条回答
唯我独甜
2楼-- · 2019-02-27 23:14

First, check if python is fully installed by typing "python" in a shell.

Then you should try python manage.py runserver inside your django project. If you don't have any django project, try creating one by typing django-admin.py startproject mysite. If nothing is displayed in your shell, you must have installed Django the wrong way.

Please refer to Django Documentation at https://docs.djangoproject.com/en/1.4/intro/install/

查看更多
登录 后发表回答