我正在尝试让 Code Runner 在我的 Windows 计算机上处理 VS 代码(尽管我使用 WSL 的大部分工作都涉及 Python)。我已经使用 Anaconda 安装了 Python
C:\\Users\\FirstName LastName\\anaconda3\\python.exe
您可能会注意到文件路径中的空格。
我已将其添加到我的settings.json
...
{
"terminal.integrated.inheritEnv": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.dataScience.sendSelectionToInteractiveWindow": true,
"code-runner.executorMap": {
"python": "C:\\Users\\FirstName LastName\\anaconda3\\python.exe",
},
"python.autoComplete.extraPaths": [
]
}
...但是当我使用 Code Runner 运行 Python 脚本时,我不断收到此错误:
[Running] C:\Users\FirstName LastName\anaconda3\python.exe "c:\Users\FirstName LastName\Documents\PythonFolder\pythonscript.py"
'C:\Users\FirstName' is not recognized as an internal or external command,
operable program or batch file.
看起来它对那里的空白不满意。我检查了另一个问题中提出的解决方案,该解决方案要添加"python": "python"
到settings.json
,但这只是给了我这个:
'python' is not recognized as an internal or external command,
operable program or batch file.
知道如何进行这项工作吗?