pythonPath:安装Python的路径。默认值获取用户/工作区设置中的扩展级别default。如果您想为不同的调试过程使用不同的python,请在此处更改它。如果要为项目中设置为默认配置的所有调试过程更改它,则在工作空间设置中更改它。在用户设置中更改它,以更改扩展在所有项目中查找python的位置。以下问题在扩展版本0.6.1中得到修复。讽刺的是,这是自动生成错误的。它会自动生成“${config.python.pythonPath}"这在较新的Visual Studio Code版本中已弃用。它可能仍然有效,但您应该使用&;${config:python.pythonPath}"而是在你的路径或Visual Studio Code设置中默认的第一个python。(4/6/2017编辑:这应该在下一个版本中修复。该团队几天前进行了修复。)
你团队中不同的人使用不同的ide,他们可能不需要你的配置文件。Visual Studio Code几乎总是把它的IDE文件放在一个地方(设计为这个目的;如果这是你第一次生成Visual Studio Code文件,请确保将目录.vscode/添加到你的.gitignore(如果你还没有这个文件,这个过程将在你的工作空间中创建文件夹)!
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run Python File", //this is the label I gave
"type": "shell",
"command": "python",
"args": ["${file}"]
保存后,文件变成这样:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run Python File",
"type": "shell",
"command": "python",
"args": [
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
我使用我现有的anaconda环境来运行python。而不是使用python用户appdata\local\programs\python使用anaconda install python by environment。这将使您能够访问环境中的所有库。
1. View->Command Palette->Open user settings
2. search python
a. Python: default interpreter path = c:\users\yourname\Anaconda3\python.exe
b. save the file
3. View->Command Palette->python:select interpreter
a. arrow down to your workspace name
b. select your python and environment
create a python script and run it.
see https://code.visualstudio.com/docs/python/environments