vscode debug No module named flask

Posted lvjianwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode debug No module named flask相关的知识,希望对你有一定的参考价值。

vscode中debug flask项目,按照msdn的教程,提示No module named flask

说明使用的python目录中没有flask

然后查看.vscode/settings.json,发现其中python.pythonPath被指向env目录,

flask可以通过生成的虚拟环境来模拟,及env中的python.exe,但是其中Libsite-packages并不包含flask模块

直接删除即可,或者在launch.json中修改路径

 

遇到No module named xxx,主要都是因为路径错误。

 

updage:

vscode launch.json中,如果args是

"args": [
"run",
"--no-debugger",
"--no-reload"
]
打开vscode,会自动在settings.json添加
"python.pythonPath": "${workspaceFolder}\venv\Scripts\python.exe"配置,导致debug的时候报错

以上是关于vscode debug No module named flask的主要内容,如果未能解决你的问题,请参考以下文章

VSCODE 报错 Module ‘xx‘ has no ‘xx‘ member pylint(no-member)

ModuleNotFoundError: No Module Named 'requests' VSCODE Mac OS

vscode:Module ‘“xxx/node_modules/vue/dist/vue“‘ has no exported member ‘ref‘

解决:VScode中 import 后出现no module的问题

Python之TabError: inconsistent use of tabs and spaces in indentation和ModuleNotFoundError:No module na

VScode中pytorch出现Module 'torch' has no 'xx' member错误