Noob问题。
我正在尝试使用Portable Python,但我无法从Python-Portable.exe可执行文件中加载脚本。我正在从命令行运行:
> Python-Portable.exe hello.py
要使它加载hello.py,我把它放在与exectuable相同的级别,以防万一,与真正的python.exe可执行文件处于同一级别。它启动Portable Python,显示一秒的启动画面,然后显示一个控制台窗口并立即关闭它。
但是,如果我使用命令行直接启动python.exe,传递给它hello.py它可以正常工作。那么两个问题 -
为什么使用Python-Portable.exe不起作用?
启动Python-Portable.exe和直接启动Python.exe有什么区别?
编辑:这是hello.py,它是Portable Python网站上使用的示例。
print("Hello world")
a = True
if a == True:
print("It is true!")
else:
print("It is false...")
b = raw_input("Enter value:")
print("Your value is")
print(b)
raw_input("Press enter to continue...")
答案 0 :(得分:0)
hello.py中的错字。
错误代码未运行,您无法获得任何反馈。