Nothing happens when I do: python manage.py command

前端 未结 11 524
半阙折子戏
半阙折子戏 2020-12-07 02:50

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

11条回答
  •  醉梦人生
    2020-12-07 03:22

    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/

提交回复
热议问题