我试图从带有子进程的python解释器中调用python文件“ hello.py”。但我无法解决此错误。[Python 3.4.1]。
import subprocess subprocess.call(['hello.py', 'htmlfilename.htm']) Traceback (most recent call last): File "<pyshell#42>", line 1, in <module> subprocess.call(['hello.py', 'htmlfilename.htm']) File "C:\Python34\lib\subprocess.py", line 537, in call with Popen(*popenargs, **kwargs) as p: File "C:\Python34\lib\subprocess.py", line 858, in __init__ restore_signals, start_new_session) File "C:\Python34\lib\subprocess.py", line 1111, in _execute_child startupinfo) OSError: [WinError 193] %1 is not a valid Win32 application
除了使用子过程之外,还有没有其他方法可以“使用参数调用python脚本”?提前致谢。
错误非常明显。该文件hello.py不是可执行文件。您需要指定可执行文件:
hello.py
subprocess.call(['python.exe', 'hello.py', 'htmlfilename.htm'])
您需要python.exe在搜索路径上可见,或者可以将完整路径传递给运行调用脚本的可执行文件:
python.exe
import sys subprocess.call([sys.executable, 'hello.py', 'htmlfilename.htm'])