为什么我的代码无法在Visual Studio代码中运行?

时间:2019-06-23 03:28:22

标签: python

无法在Visual Studio代码中运行我的代码。 请先生,如果您知道,请告诉我我才开始学习python。

当我键入$ code hello.py时,就会发生这种情况。 enter image description here

2 个答案:

答案 0 :(得分:3)

在图像中,您使用了code hello.py。您应该改用python hello.py。只有在安装python软件时选中“将Python添加到路径”,才能在命令提示符下运行。

如果您使用的是MAC

在Mac中,将自动安装Python 2.7。如果要使用python3,则必须从python官方网站手动安装并使用python3 hello.py来使用python3。

答案 1 :(得分:0)

始终记住,将使用以下命令来运行python文件:-python yourfile_name.py

在您的图片中,您正在尝试使用以下命令运行Python文件:-code hello.py

请尝试使用code hello.py进行更改,而不要使用python hello.py