VS code 的 python 环境变量设置

        "configurations": [{
            "name": "g",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/youtube_dl",
            "console": "integratedTerminal",
            "args": ["-F",  "https://www.ya.com/renwenjp/221727/"],
            "python": "/usr/bin/python3"
        }],

launch.json 里面,可以指定 VS code 的 python 工程 project 的使用 python 版本

这个是工程 scheme 级别的


也可以在工程级别设置:

.vscode 文件夹下:

settings.json 文件中:

{ "python.pythonPath": "/usr/bin/python3" }

具体的配置过程:

进入设置

VS code 的 python 环境变量设置_第1张图片

选择解释器

Command + Shift + P

VS code 的 python 环境变量设置_第2张图片

选择合适的路径

VS code 的 python 环境变量设置_第3张图片

你可能感兴趣的:(干,python)