我正在调试我的Django项目,但是每当我在VSCode中点击运行和调试窗口上的播放按钮时,它会思考一秒钟,然后完全停止。当我用“runserver”命令运行我的项目时,它运行得非常好。
我试过重新启动VSCode和重新启动我的计算机。
这是我的launch.json文件
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver",
"9000"
],
"django": true
}
]
}
1条答案
按热度按时间fcwjkofz1#
也许这有助于:
快捷键Ctrl + Shift + P选择解释器
选择正确的