首页 文章

Visual Studio代码Python调试器Windows

提问于
浏览
0

我似乎错过了一些简单的东西,但我可以't figure out why I am unable to debug python using Visual Studio Code on Windows. I'尝试设置调试器,如Microsoftyoutube video所示 . 我已经完成了Visual Studio Code(包括python扩展)和Python 3.6的全新安装 . 我没有安装其他python版本 . 我在Python调试器中不断收到以下错误:

cd "c:\Users\xxx\Documents\Python Scripts" ; env "PYTHONIOENCODING=UTF-8" "PYTHONUNBUFFERED=1" "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\python.exe" "C:\Users\xxx\.vscode\extensions\ms-python.python-2018.3.1\pythonFiles\PythonTools\visualstudio_py_launcher.py" "c:\Users\xxx\Documents\Python Scripts" 53746 34806ad9-833a-4524-8cd6-18ca4aa74f14 RedirectOutput,RedirectOutput "c:\Users\xxx\Documents\Python Scripts\.vscode\launch.json"
    -bash: cd: c:\Users\xxx\Documents\Python Scripts: No such file or directory
    env: ‘C:\\Users\\xxx\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe’: No such file or directory

它抱怨它无法找到python.exe文件,但它显然可以,因为VS代码表明它已附加:

VS Code Python Attached

我的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: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}"
        },
        {
            "name": "Python: Attach",
            "type": "python",
            "request": "attach",
            "localRoot": "${workspaceFolder}",
            "remoteRoot": "${workspaceFolder}",
            "port": 3000,
            "secret": "my_secret",
            "host": "localhost"
        },
        {
            "name": "Python: Terminal (integrated)",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal"
        },
        {
            "name": "Python: Terminal (external)",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "externalTerminal"
        },
        {
            "name": "Python: Django",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/manage.py",
            "args": [
                "runserver",
                "--noreload",
                "--nothreading"
            ],
            "debugOptions": [
                "RedirectOutput",
                "Django"
            ]
        },
        {
            "name": "Python: Flask (0.11.x or later)",
            "type": "python",
            "request": "launch",
            "module": "flask",
            "env": {
                "FLASK_APP": "${workspaceFolder}/app.py"
            },
            "args": [
                "run",
                "--no-debugger",
                "--no-reload"
            ]
        },
        {
            "name": "Python: Module",
            "type": "python",
            "request": "launch",
            "module": "module.name"
        },
        {
            "name": "Python: Pyramid",
            "type": "python",
            "request": "launch",
            "args": [
                "${workspaceFolder}/development.ini"
            ],
            "debugOptions": [
                "RedirectOutput",
                "Pyramid"
            ]
        },
        {
            "name": "Python: Watson",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/console.py",
            "args": [
                "dev",
                "runserver",
                "--noreload=True"
            ]
        },
        {
            "name": "Python: All debug Options",
            "type": "python",
            "request": "launch",
            "pythonPath": "${config:python.pythonPath}",
            "program": "${file}",
            "module": "module.name",
            "env": {
                "VAR1": "1",
                "VAR2": "2"
            },
            "envFile": "${workspaceFolder}/.env",
            "args": [
                "arg1",
                "arg2"
            ],
            "debugOptions": [
                "RedirectOutput"
            ]
        }
    ]
}

Pylinting工作正常,我没有Visual Studio代码中与python相关的自定义用户设置 . 我已经尝试在settings.json中设置完整的文件路径到python.exe,但它没有任何区别 .

任何帮助是极大的赞赏 . 提前致谢

2 回答

  • 0

    我有同样的问题,但经过几次调整我的设置后终于摆脱了它 . 确保所有其他设置都已到位,如您在settings.json中提到的那样 pythonPath ,并且还要从VS代码中的"extension"工具栏安装"python" . 只需将您的调试配置从"Python: Scripts"(或您之前选择的任何其他配置)更改为"Python: Terminal(external)",您就可以开始了!

  • 0

    我知道,这是一种痛苦,我也经历过同样的痛苦 .

    显然 python.exe 正在正确执行 . 你会看到那个 Banner ,因为"This is necessary to bootstrap the debugger."

    至少这是微软says .

相关问题