Pyinstaller:打包文件时无法创建进程

时间:2016-07-21 10:04:26

标签: python process packaging pyinstaller

我正在使用Pyinstaller打包我制作的应用程序。当我输入:

C:\Users\Hung Truong\Desktop\Python>pyinstaller.exe --onefile --windowed file.py

它给出错误:

failed to create process.

我该如何解决这个问题?任何帮助表示赞赏!

2 个答案:

答案 0 :(得分:0)

pyinstaller-script.py

!c:\program files\python\python35-32\python.exe

使用以下代码更改此行:

!"c:\program files\python\python35-32\python.exe"

答案 1 :(得分:0)

我遇到了同样的问题,所以我检查了文件

C:\Python27\Scripts\pyinstaller-script.py

还有一个旧的python路径,当我安装python安装程序时

C:\Python27\python.exe

但是后来我重命名了python.exe-> python2.exe,所以我只更改了路径

C:\Python27\python.exe --> C:\Python27\python2.exe

在文件中

C:\Python27\Scripts\pyinstaller-script.py

效果很好。