我正在尝试通过PyInstaller构建一个python脚本。我使用以下命令来配置,生成spec文件和构建:
wget pyinstaller.zip, extracted it, python Configure.py, etc, then:
python pyinstaller/Makespec.py --onefile myscript.py
python pyinstaller/Build.py myscript.spec
这是它生成的spec文件:
# -*- mode: python -*-
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'), os.path.join(HOMEPATH,'support/useUnicode.py'), 'icinga.py'],
pathex=['/home/user/projects/icinga_python/releases/v2.1'])
pyz = PYZ(a.pure)
exe = EXE( pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name=os.path.join('dist', 'myscript'),
debug=False,
strip=False,
upx=True,
console=1 )
这在dist/
目录中构建了一个可执行文件。尝试运行此文件时,我得到以下内容:
Traceback (most recent call last):
File "<string>", line 12, in <module>
File "/home/user/projects/myscript/releases/v2.1/pyinstaller/iu.py", line 455, in importHook
raise ImportError, "No module named %s" % fqname
ImportError: No module named mysql
如果我将此可执行文件移动到实际Python代码的目录中,它会得到不同的结果:
Traceback (most recent call last):
File "<string>", line 12, in <module>
File "/home/user/projects/myscript/releases/v2.1/pyinstaller/iu.py", line 436, in importHook
mod = _self_doimport(nm, ctx, fqname)
File "/home/user/projects/myscript/releases/v2.1/pyinstaller/iu.py", line 521, in doimport
exec co in mod.__dict__
File "CLUSTER/mysql/icingasql.py", line 13, in <module>
import urllib2
File "/home/user/projects/myscript/releases/v2.1/pyinstaller/iu.py", line 455, in importHook
raise ImportError, "No module named %s" % fqname
ImportError: No module named urllib2
在... pyinstaller docs 中,我看到--onefile
是我需要/想要的选项,但由于某种原因,并非所有内容都被编译。
这个脚本并没有包含任何花哨的内容,只是为sql语句编写的一些快速模块,以及解析某些网站。
答案 0 :(得分:5)
当您的代码中包含动态导入时,此错误可能会发生。在这种情况下,pyinstaller不会在exe文件中包含这些包。在这种情况下,你可以:
一个文件选项在运行代码时不会改变任何内容。如果您正在创建--onefile exe,则由pyinstaller创建的所有文件都打包到exe文件,并在每次运行exe时解压缩到本地temp。
答案 1 :(得分:2)
问题是pyinstaller不会看到二级导入。因此,如果您导入模块 A ,pyinstaller会看到这一点。但是不会看到在 A 中导入的任何其他模块。
您无需更改python脚本中的任何内容。您可以直接将缺少的导入添加到规范文件。
只需在a = Analysis(...)
中添加以下内容:
hiddenimports=["mysql"],
这应该是结果:
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'), os.path.join(HOMEPATH,'support/useUnicode.py'), 'icinga.py'],
pathex=['/home/user/projects/icinga_python/releases/v2.1'], hiddenimports=["mysql"],)
之后运行pyinstaller并将spec文件作为参数。
答案 2 :(得分:2)
只要加上我的2美分,因为我今天遇到了同样的问题 - 6年后:D
对于Windows:
1) cmd => rightclick => with admin rights
2) Enter in cmd: "pip install pyinstaller"
3) navigate in cmd to the folder of "yourMain.py"
4) Enter in cmd: "pyinstaller --onefile --windowed yourMain.py"
5) If you import other scripts / data in "yourMain.py":
Manually enter the folder "dist" (gets created - where "yourMain.exe" should be by now),
and copy your scripts or folder structure there
(e.g. /assets/sounds; /assets/graphics; /scripts; anotherscript.py )
然后我可以通过双击来运行exe。
原来很简单。我的诀窍是&#34; - onfile&#34;并将我的其他文件添加到&#34; dist&#34;夹。
&#34; - 窗口&#34;就是这样,当你启动exe时,python命令窗口不会弹出。