'在命令提示符下找不到'__ main __'模块'

'can't find '__ main __' module' in command prompt

所以我按照教程进行了项目的一些基本设置(将文件夹克隆到我自己的电脑上)

If you have chosen to install python (and already set up PATH variable for python.exe) then follow the instructions:

Open the command prompt and change the directory to the project folder as mentioned above by running the below command

cd C:/your cloned project folder path goes here/

then run the below command

python.exe C:/your cloned project folder path goes here/

然后我得到:

C:\Users\user_name\project_name>python.exe C:\Users\user_name\project_name

C:\Users\user_name\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.8_abc1d2efgh3i4\python.exe: can't find '__main__' module in 'C:\Users\user_name\project_name'

当我输入第二个命令时。 (注意:我将项目文件夹克隆到 \user_name\project_name)。

但是我找不到关于此问题的有用信息,因为它通常出现在 python 中,而不是计算机本身的命令提示符中。我检查过我确实为 python.exe 设置了 PATH 变量。并且我为 2 个命令输入的路径是相同的。可能出了什么问题,我该如何解决?

如果有帮助,这是我 运行 内容的屏幕截图。蓝色覆盖的部分只是user_name和project_name以及一些无关的信息。 click to see cap screen(因为我没有获得足够的声誉,所以不允许在帖子中嵌入图片。)

您看到此错误是因为 C:\Users\user_name\project_name 是一个文件夹,而 python 不知道如何处理它。相反,您需要指定 python 脚本的名称。这些文件通常以 .py 扩展名结尾。