VScode Python no module的解决方法

解决方法

在lauch.json中,修改 "env": {}为 "env": {"PYTHONPATH":"${workspaceRoot}"}
完整的代码如下:

{
            "name": "Python",
            "type": "python",
            "request": "launch", "stopOnEntry": false, "pythonPath": "${config:python.pythonPath}", "program": "${file}", "cwd": "${workspaceRoot}", "env": {"PYTHONPATH":"${workspaceRoot}"}, "envFile": "${workspaceRoot}/.env", "debugOptions": [ "WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput" ] }, 

 

转载于:https://www.cnblogs.com/andy-0212/p/11114090.html

你可能感兴趣的:(VScode Python no module的解决方法)