这与this question几乎相同,但那里给出的解决方案(调用freeze_support())对我不起作用。
我有一个名为start.py的脚本,用于使用py2exe(版本0.9.2.2)构建独立的可执行文件。我也在同一目录中有python.exe。
import multiprocessing
def main():
print('Parent')
p = multiprocessing.Process(target=new_process)
multiprocessing.set_executable('python.exe')
p.start()
p.join()
def new_process():
print('Child')
if __name__ == '__main__':
multiprocessing.freeze_support()
main()
当以纯Python运行时,它运行得很好。但是,当打包为可执行文件时,这是我得到的错误:
Unknown option: --
usage: <path to start.exe> [option] ... [-c cmd | -m mod | file | -] [arg] ...
Try `python -h' for more information.
这显然是通过调用
引起的python.exe --multiprocessing-fork
如果我没有调用set_executable()和freeze_support(),那么子进程只会启动exe并以__main__运行,从而导致无穷无尽的新进程链打印&#34; Parent&#34;而#34;孩子&#34;从未打印过。
如果我不调用multiprocessing.set_executable()
,那么调用freeze_support()似乎唯一要做的就是导致子进程引发以下错误Traceback (most recent call last):
File "start.py", line 17, in <module>
multiprocessing.freeze_support()
File "C:\Python34\Lib\multiprocessing\context.py", line 148, in freeze_support
freeze_support()
File "C:\Python34\Lib\multiprocessing\spawn.py", line 67, in freeze_support
main()
NameError: name 'main' is not defined
我在Windows 8.1 64位上使用Python 3.4 32位运行。我使用cx-Freeze尝试了以上所有相同的结果。任何帮助将不胜感激。
编辑:即使使用此示例straight out of the docs:
from multiprocessing import Process, freeze_support
def f():
print('hello world!')
if __name__ == '__main__':
freeze_support()
Process(target=f).start()
当子进程调用freeze_support()时,我得到相同的NameError。
答案 0 :(得分:2)
尝试建议的修正in the docs:
multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
另请注意,您需要在生成任何新流程之前调用此。