Python プロジェクトを UNIX 実行可能ファイルにパッケージ化したいと考えています。このために、py2exe、cxfreeze、pyInstaller を試しましたが、何も機能しませんでした。うまくいけば、pyinstaller で私を助けてくれます。だからここに行く:
http://www.pyinstaller.org/から pyinstaller-2.0 の zip ファイルをダウンロードし、解凍しました。
フォルダー内で実行しますpython pyinstaller.py ../helloworld.py
(出力は最後にリストされています)。
次に、ファイルを実行しようとします。./helloworld/dist/helloworld/helloworld
これにより、次の出力が得られます。
mod is NULL - structTraceback (most recent call last):
File "/usr/lib/python2.7/struct.py", line 1, in <module>
from _struct import *
ImportError: No module named _struct
mod is NULL - archiveTraceback (most recent call last):
File "/home/jelle/Downloads/pyinstaller-1.5.1/archive.py", line 42, in <module>
import struct
ImportError: No module named struct
Traceback (most recent call last):
File "<string>", line 25, in <module>
ImportError: No module named archive
Python 2.7.3 で Ubuntu 12.04 を使用しています。私の PYTHONPATH には /usr/lib/python2.7 が含まれています。問題はモジュール _struct の欠落にあるように見えますが、どこにあるのかわかりません。私はpyinstaller 1.5.1と開発版を試しましたが、どちらもここでは機能しません。
助けてください!
の出力python pyinstaller.py ../helloworld.py
:
7 INFO: wrote /home/jelle/Downloads/pyinstaller-2.0/helloworld/helloworld.spec
27 INFO: UPX is not available.
583 INFO: checking Analysis
583 INFO: building Analysis because out00-Analysis.toc non existent
583 INFO: running Analysis out00-Analysis.toc
702 INFO: Analyzing /home/jelle/Downloads/pyinstaller-2.0/support/_pyi_bootstrap.py
1570 INFO: Analyzing /home/jelle/Downloads/pyinstaller-2.0/PyInstaller/loader/archive.py
1637 INFO: Analyzing /home/jelle/Downloads/pyinstaller-2.0/PyInstaller/loader/carchive.py
1701 INFO: Analyzing /home/jelle/Downloads/pyinstaller-2.0/PyInstaller/loader/iu.py
1720 INFO: Analyzing ../helloworld.py
1721 INFO: Hidden import 'encodings' has been found otherwise
1721 INFO: Looking for run-time hooks
1721 INFO: Analyzing rthook /home/jelle/Downloads/pyinstaller-2.0/support/rthooks/pyi_rth_encodings.py
2197 INFO: Looking for Python library libpython2.7.so
objdump: section '.dynamic' mentioned in a -j option, but not found in any input file
2308 INFO: Warnings written to /home/jelle/Downloads/pyinstaller-2.0/helloworld/build/pyi.linux2/helloworld/warnhelloworld.txt
2311 INFO: checking PYZ
2311 INFO: rebuilding out00-PYZ.toc because out00-PYZ.pyz is missing
2312 INFO: building PYZ out00-PYZ.toc
2706 INFO: checking PKG
2706 INFO: rebuilding out00-PKG.toc because out00-PKG.pkg is missing
2706 INFO: building PKG out00-PKG.pkg
2711 INFO: checking EXE
2712 INFO: rebuilding out00-EXE.toc because helloworld missing
2712 INFO: building EXE from out00-EXE.toc
2772 INFO: Appending archive to EXE /home/jelle/Downloads/pyinstaller-2.0/helloworld/build/pyi.linux2/helloworld/helloworld
2773 INFO: checking COLLECT
2773 INFO: building COLLECT out00-COLLECT.toc
ところで: 私の helloworld.py には、ステートメント print "hello world" が含まれているだけです。先頭に #!/usr/bin/python2.7 を入れてみました。