每当我尝试在命令行中运行python脚本时,都会出现“找不到'__main__'模块”错误

时间:2018-07-10 09:19:23

标签: python

这是我的批处理文件代码:

@py C:\Users\Asus\Google Drive\Lifestyle\Technicals\Programming\Python\Python Scripts\Test.py %*
@pause

或者,当我在命令行中尝试以下代码行时,也会出现相同的错误:

py.exe C:\Users\Asus\Google Drive\Lifestyle\Technicals\Programming\Python\Python Scripts\Test.py

我的Test.py文件具有:

print('Hello')

错误消息: enter image description here

1 个答案:

答案 0 :(得分:2)

你能尝试做吗

python "C:\Users\Asus\Google Drive\Lifestyle\Technicals\Programming\Python\Python Scripts\Test.py"

命令行不喜欢“”(空格)字符。从而破坏了您的命令。

您需要cd directory在正确的目录中,或者执行用双引号引起来的命令