標籤:使用者 添加 lan too aries 動態 exe trace 介紹
安裝PyInstaller
對於那些網路比較穩定,能夠流暢使用pip源地址的使用者,直接下面的命令就可以搞定:
pip install pyinstaller
通常我們會下載源碼包,然後進入包目錄,執行下面的命令(需要安裝setuptools):
python setup.py install
對於其他安裝選項,請參閱手冊和PIP使用者指南。
安裝當前開發版本使用:
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
安裝完後,檢查安裝成功與否:
pyinstaller --version
安裝成功後,就可以使用下面的命令了:
pyinstaller
: 打包可執行檔的主要命令,詳細用法下面會介紹。
pyi-archive_viewer
: 查看可執行包裡面的檔案清單。
pyi-bindepend
: 查看可執行檔依賴的動態庫(.so或.dll檔案)
pyi-...
: 等等。
在執行pyInstaller
命令的時候,會在和指令碼相同目錄下,產生一個.spec
檔案,該檔案會告訴pyinstaller如何處理你的所有指令碼,同時包含了命令選項。一般我們不用去理會這個檔案,若需要打包資料檔案,或者給打包的二進位增加一些Python的運行時選項時...一些進階打包選項時,需要手動編輯.spec
檔案。可以使用:
pyi-makespec options script [script ...]
使用PyInstaller
pyinstaller
的文法:
pyinstaller [options] script [script ...] | specfile
最簡單的用法,在和myscript.py同目錄下執行命令:
pyinstaller mycript.py
然後會看到新增加了兩個目錄build和dist,dist下面的檔案就是發行就緒的可執行檔,對於上面的命令你會發現dist目錄下面有一堆檔案,各種都動態庫檔案和myscrip可執行檔。有時這樣感覺比較麻煩,需要打包dist下面的所有東西才能發布,萬一丟掉一個動態庫就無法運行了,好在pyInstaller支援單檔案模式,只需要執行:
pyinstaller -F mycript.py
你會發現dist下面只有一個可執行檔,這個單檔案就發行就緒了,可以運行在你正在使用的作業系統類似的系統的下面。
報錯:
如果python不是預設安裝路徑,可能會找不到相應的庫檔案:
Traceback (most recent call last): File "/xs/app/python3.5/bin/pyinstaller", line 11, in <module> sys.exit(run()) File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/__main__.py", line 94, in run run_build(pyi_config, spec_file, **vars(args)) File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/__main__.py", line 46, in run_build PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs) File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/build_main.py", line 791, in main build(specfile, kw.get(‘distpath‘), kw.get(‘workpath‘), kw.get(‘clean_build‘)) File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/build_main.py", line 737, in build exec(text, spec_namespace) File "<string>", line 16, in <module> File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/build_main.py", line 213, in __init__ self.__postinit__() File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/datastruct.py", line 161, in __postinit__ self.assemble() File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/build_main.py", line 545, in assemble self._check_python_library(self.binaries) File "/xs/app/python3.5/lib/python3.5/site-packages/PyInstaller/building/build_main.py", line 629, in _check_python_library raise IOError(msg)OSError: Python library not found: libpython3.5mu.so.1.0, libpython3.5.so.1.0, libpython3.5m.so.1.0This would mean your Python installation doesn‘t come with proper library files.This usually happens by missing development package, or unsuitable build parameters of Python installation.* On Debian/Ubuntu, you would need to install Python development packages * apt-get install python3-dev * apt-get install python-dev* If you‘re building Python by yourself, please rebuild your Python with `--enable-shared` (or, `--enable-framework` on Darwin)
解決方案:
1.編譯/etc/ld.so.conf,添加:/usr/local/lib64/usr/local/lib2.ldconfig3.重新pyinstaller檔案即可
將Python指令碼打包成可執行檔