1

首先需要安装VScode Python插件。打开Python任意脚本,可以直接拖入。

vscode python路径设置 vscode怎么更改python路径_vscode编辑python

2

点击左下角的扩展按钮,在弹出界面选择“显示扩展建议”。

vscode python路径设置 vscode怎么更改python路径_重启_02

vscode python路径设置 vscode怎么更改python路径_vscode编辑python_03

3

然后点击第一个Python插件进行安装。安装需要几分钟。安装完成后点击重启。

vscode python路径设置 vscode怎么更改python路径_搜索_04

vscode python路径设置 vscode怎么更改python路径_vscode编辑python_05

4

接下来我们点击用户设置菜单。这时候会打开两个文件。

vscode python路径设置 vscode怎么更改python路径_搜索_06

vscode python路径设置 vscode怎么更改python路径_vscode python路径设置_07

5

我们在左边文件Ctrl+F搜索Python关键字,找到pythonPath所在行

vscode python路径设置 vscode怎么更改python路径_重启_08

6

把这行拷贝到右边文件,修改Python所在路径。注意斜杠的方向,删除末尾逗号

vscode python路径设置 vscode怎么更改python路径_Python_09

7

保存文件。然后点击左边的资源管理器按钮,重新切换到我们的程序文件。

vscode python路径设置 vscode怎么更改python路径_重启_10

8

Ctrl+shift+B运行程序。这时候提示需要在文件夹目录下才能进行配置。于是我们点击打开文件夹按钮,打开程序所在文件夹。

vscode python路径设置 vscode怎么更改python路径_搜索_11

vscode python路径设置 vscode怎么更改python路径_vscode编辑python_12

9

Ctrl+shift+B运行程序。这时候会提示配置任务运行程序,点击配置。选择运行任意外部命令菜单。

vscode python路径设置 vscode怎么更改python路径_Python_13

vscode python路径设置 vscode怎么更改python路径_vscode编辑python_14

10

在打开的tasks.json文件中,我们需要修改两个内容,路径和执行文件名。

vscode python路径设置 vscode怎么更改python路径_vscode python路径设置_15

vscode python路径设置 vscode怎么更改python路径_重启_16

11

好了,现在Python的代码可以Ctrl+shift+B直接运行了。文中的设置部分代码可以在文末下载。使用愉快。

vscode python路径设置 vscode怎么更改python路径_Python_17

END