如何在不使用PyCharm IDE的情况下在Python 2.7中运行Django项目

时间:2018-03-29 04:59:50

标签: django python-2.7 pycharm

如何在不使用PyCharm IDE的情况下在Windows 7 32位上运行Python 2.7中的Django项目?

2 个答案:

答案 0 :(得分:0)

您可以Command PromptTerminal

执行此操作

使用此命令$ python manage.py runserver

有关详细信息,请查看this official documentation of django

答案 1 :(得分:0)

请尝试按照以下步骤操作:

  1. 打开Windows控制台(cmd)
  2. official website
  3. 安装python
  4. 通过点击安装django:pip install django
  5. 创建您的django项目:django-admin startproject project_name
  6. 通过:python manage.py runserver 8000
  7. 运行它