我刚刚在 VS Code 上安装了 python,我无法使用python
命令运行任何 python 代码。
蟒蛇命令:
运行代码似乎python
默认运行命令并且它无法识别它。
当我右键单击并选择Run Code
它时抱怨:
'python' is not recognized as an internal or external command, operable program or batch file
手动运行也是如此python main.py
。
当我打开提升的 PowerShell 并运行python
时,它会抱怨:
python : The term 'python' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ python
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (python:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
py 命令:
它不会尝试使用py
命令,但它会识别它。当我手动调用时py main.py
,它可以工作。
当我手动执行>py main.py
时,它会写入我的Goodbye, World!
问题:
如何通过使用 CodeRunner 的右键单击功能 ( Run Code
) 使其在 VS Code 中编译/运行?
我已经在 PATH 中有 Python 文件夹及其 Scripts 文件夹。
我正在使用VS Code 1.27.2
并且我已经python 3.7.0
在我的机器上安装并检查了它的安装程序复选框以自动添加环境变量。(路径没问题)
我还在 VS Code 上安装了 : ms-python.python
and tht13.python
andformulahendry.code-runner
扩展。
这是我的main.py
代码:
print("Goodbye, World!")