Visual Studio中的Run按钮为manage.py提供了选项,而不是running



我试图运行一个Django项目与管理.py作为启动文件。我可以使用python manage.py runserver从命令提示符运行它,并手动导航到站点。我期望当我在Visual Studio中按下运行按钮时,它会启动服务器并打开浏览器向我显示页面,但它只是打开management .py:

的选项。
Type 'manage.py help <subcommand>' for help on a specific subcommand.
Available subcommands:
[auth]
changepassword
createsuperuser

等。

我试过将management .py重新设置为启动文件,重置启动项目,并将Python Tools Interactive Windows的启动脚本设置为management .py。

提前感谢您的帮助。

原来我没有为Debug设置启动模式。我进入了Project-> 'Project-name' Properties... -> Debug tab。我看到我没有从下拉菜单中选择Launch mode。我选择了Web launcher,现在一切都按照我期望的方式工作。

相关内容

  • 没有找到相关文章

最新更新