我有一个问题,而调试一个django项目使用VS代码,问题是什么也没有发生,当我点击调试按钮,我可以启动我的脚本只需点击终端python manage.py runserver
。
下面是我的launch.json文件,请注意,我尝试了很多示例,仍然存在相同的问题:
{
"version": "0.2.0",
"configurations": [
{
"name": "Django",
"python": "C:/Users/msekmani/Desktop/dashboard_project/venv/Scripts/python.exe",
"type": "python",
"request": "launch",
"program": "C:/Users/msekmani/Desktop/dashboard_project/IPv2/src/manage.py",
"console": "internalConsole",
"args": ["runserver"],
"django": true,
"justMyCode": true,
},
]
}
我使用的是Python 3.6版,操作系统是Windows。
请注意,我也尝试过创建Python调试,但它也不起作用,下面是我的launch.json脚本:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
1条答案
按热度按时间k4ymrczo1#
我找到了一个解决这个问题的方法,把python版本升级到3.7,我对3.6版本中发生的问题没有任何想法,顺便说一下,升级python版本就是解决方案。