如何从 "ms-python.python" 的命令行 "select interpreter" 进行设置?
How to set from command line "select interpreter" of "ms-python.python"?
我已经安装了这个扩展。
有什么方法可以从命令行设置 select 解释器路径?
您可以在 vscode 用户域或 vscode 工作区 .vscode
路径中通过文件 settings.json
进行设置。
{
//...
"python.defaultInterpreterPath": "python" // the default path
}
如果需要,您可以通过命令行修改 settings.json
。
我已经安装了这个扩展。
有什么方法可以从命令行设置 select 解释器路径?
您可以在 vscode 用户域或 vscode 工作区 .vscode
路径中通过文件 settings.json
进行设置。
{
//...
"python.defaultInterpreterPath": "python" // the default path
}
如果需要,您可以通过命令行修改 settings.json
。