2

我在 Windows 10 上使用最新版本的 VSCODE 和 Python 3.6(64 位)。

我安装了“Python”扩展(微软制造的那个)。

每次我尝试运行一个简单的程序 [eg: print("Hello World")] 时,它都会说“命令“python”拼写不正确或找不到”![完成] 在 0.034 秒内以 code=1 退出

这是一个非常简单的 Hello World 程序,实际上并不需要太多。为什么 VSCODE 不让我运行 Python 文件?

这是我的 Python 的存储位置:

C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\python.exe

4

2 回答 2

6

也许你的翻译有问题。

试试这个: ctrl+shift+p -> Python: Select Interpreter -> 选择你的路径(C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\python.exe

https://code.visualstudio.com/docs/python/environments

于 2019-09-24T18:35:31.700 回答
1

如果您从可执行文件而不是从 Windows 应用商店安装 Python,则可以将终端设置从内部更改为外部,并将cmd其设为 Visual Studio Code 中的默认终端。

您可以直接从以下位置编辑这些设置settings.json

"terminal.explorerKind": "external",
"terminal.integrated.defaultProfile.windows": "Command Prompt"
于 2021-07-12T18:47:08.517 回答