1、簡介html
py2exe是一個將python腳本轉換成windows上的可獨立執行的可執行程序(*.exe)的工具,這樣,你就能夠不用裝python而在windows系統上運行這個可執行程序。python
py2exe已經被用於建立wxPython,Tkinter,Pmw,PyGTK,pygame,win32com client和server,和其它的獨立程序。py2exe是發佈在開源許可證下的。web
2、安裝py2exewindows
從http://prdownloads.sourceforge.net/py2exe 下載並運行與你所安裝的Python對應的py2exe版本的installer,這將安裝py2exe和相應的例子;這些例子被安裝在lib\site-packages\py2exe\samples目錄下。api
3、py2exe的用法函數
若是你有一個名爲helloworld.py的python腳本,你想把它轉換爲運行在windows上的可執行程 序,並運行在沒有安裝python的 windows系統上,那麼首先你應寫一個用於發佈程序的設置腳本例如mysetup.py,在其中的setup函數前插入語句 import py2exe 。工具
mysetup.py示例以下:字體
from distutils.core import setup import py2exe setup(console=["helloworld.py"])
若是顯示錯誤提示的話 「 msvcp90.dll: no such file or directory」ui
請嘗試下面的方法:this
from distutils.core import setup import py2exe setup( console=["helloworld.py"], options = { "py2exe": { "dll_excludes": ["MSVCP90.dll"] } } )
而後按下面的方法運行mysetup.py: (dos: cmd => cd desktop => mysetup.py py2exe)
python mysetup.py py2exe
上面的命令執行後將產生一個名爲dist的子目錄,其中包含了helloworld.exe,python24.dll,library.zip這些文件。
若是你的helloworld.py腳本中用了已編譯的C擴展模塊,那麼這些模塊也會被拷貝在個子目錄中,一樣,全部的dll文件在運行時都是須要的,除了系統的dll文件。
dist子目錄中的文件包含了你的程序所必須的東西,你應將這個子目錄中的全部內容一塊兒發佈。
默認狀況下,py2exe在目錄dist下建立如下這些必須的文件:
一、一個或多個exe文件。
二、python##.dll。
三、幾個.pyd文件,它們是已編譯的擴展名,它們是exe文件所須要的;加上其它的.dll文件,這些.dll是.pyd所須要的。
四、一個library.zip文件,它包含了已編譯的純的python模塊如.pyc或.pyo
上面的mysetup.py建立了一個控制檯的helloword.exe程序,若是你要建立一個圖形用戶界的程序,那麼你只須要將mysetup.py中的console=["helloworld.py"]替換爲windows=["myscript.py"]既可。
py2exe一次可以建立多個exe文件,你須要將這些腳本文件的列表傳遞給console或windows的關鍵字參數。若是你有幾個相關聯的腳本,那麼這是頗有用的。
運行下面個命令,將顯示py2exe命令的全部命令行標記。
python mysetup.py py2exe --help
Global options: --verbose (-v) run verbosely (default) --quiet (-q) run quietly (turns verbosity off) --dry-run (-n) don't actually do anything --help (-h) show detailed help message Options for 'py2exe' command: --optimize (-O) optimization level: -O1 for "python -O", -O2 for "python -OO", and -O0 to disable [default: -O0] --dist-dir (-d) directory to put final built distributions in (default is dist) --excludes (-e) comma-separated list of modules to exclude --dll-excludes comma-separated list of DLLs to exclude --ignores comma-separated list of modules to ignore if they are not found --includes (-i) comma-separated list of modules to include --packages (-p) comma-separated list of packages to include --compressed (-c) create a compressed zipfile --xref (-x) create and show a module cross reference --bundle-files (-b) bundle dlls in the zipfile or the exe. Valid levels are 1, 2, or 3 (default) --skip-archive do not place Python bytecode files in an archive, put them directly in the file system --ascii (-a) do not automatically include encodings and codecs --custom-boot-script Python file that will be run when setting up the runtime environment usage: setup_py2exe.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup_py2exe.py --help [cmd1 cmd2 ...] or: setup_py2exe.py --help-commands or: setup_py2exe.py cmd --help
4、指定額外的文件
一些應用程序在運行時須要額外的文件,諸如配置文件、字體、位圖。
若是在安裝腳本中用data_files可選項指定了那些額外的文件,那麼py2exe能將這些文件拷貝到dist子目錄中。data_files應包含一個元組(target-dir, files)列表,其中的files是這些額外的文件的列表。
示例以下:
PythonCode: # mysetup.py
from distutils.core import setup import glob import py2exe setup(console=["helloworld.py"], data_files=[("bitmaps", ["bm/large.gif", "bm/small.gif"]), ("fonts", glob.glob("fonts\\*.fnt"))], )
說明:data_files選項將建立一個子目錄dist\bitmaps,其中包含兩個.gif文件;一個子目錄dist\fonts,其中包含了全部的.fnt文件。
5、Windows NT services
你能夠經過傳遞一個service關鍵字參數給setup函數來建造Windows NT services
,這個service參數的值必須是一個Python模塊名(包含一service類)的列表。
示例以下:
PythonCode: # mysetup.py
from distutils.core import setup import py2exe setup(service=["MyService"])
所建造的可執行的service是能夠經過在其後跟必定的命令行參數標記來自行安裝和卸載的。你能夠經過在這個可執行的service(exe)後跟一-help參數來獲得更多的幫助。
6、COM servers
你能夠經過傳遞一個com_server 關鍵字參數給setup函數來建造Windows NT services
,這個service參數的值必須是一個Python模塊名(包含一個或多個COM server 類)的列表。
示例以下:
PythonCode: # mysetup.py
from distutils.core import setup import py2exe setup(com_server=["win32com.server.interp"])
默認狀況下,DLL和EXE servers被建造,你不須要它們的話你能夠簡單的刪除它們。
一個標準的py2exe setup文件編寫
-*- coding: cp936 -*- from distutils.core import setup import py2exe includes = ["encodings", "encodings.*"] #要包含的其它庫文件 options = {"py2exe": {"compressed": 1, #壓縮 "optimize": 2, "ascii": 1, "includes":includes, "bundle_files": 1 #全部文件打包成一個exe文件 } } setup( options = options, zipfile=None, #不生成library.zip文件 console=[{"script": "hello.py", "icon_resources": [(1, "hello.ico")] }]#源文件,程序圖標 )
新 版本已經能夠打包爲一個文件了,之前都是一堆dll,pyd的。具體的變化其實只有一個地方。就是options裏增長bundle_files項,值爲 1表示pyd和dll文件會被打包到exe文件中,且不能從文件系統中加載python模塊;值爲2表示pyd和dll文件會被打包到exe文件中,可是 能夠從文件系統中加載python模塊。另外setup中使用zipfile=None能夠不生成library.zip。
例如原來 的:
from distutils.core import setup import py2exe includes = ["encodings", "encodings.*"] options = {"py2exe": { "compressed": 1, "optimize": 2, "includes": includes, } } setup( version = "0.1.0", description = "search panda", name = "search panda", options = options, windows=[{"script": "search.py", "icon_resources": [(1, "search.ico")] }], )
只須要改成:
from distutils.core import setup import py2exe includes = ["encodings", "encodings.*"] options = {"py2exe": { "compressed": 1, "optimize": 2, "includes": includes, "bundle_files": 1 } } setup( version = "0.1.0", description = "search panda", name = "search panda", options = options, zipfile=None, windows=[{"script": "search.py", "icon_resources": [(1, "search.ico")] }], )
好比,這裏我打包之前的DelphiCode2HTML的
# -*- coding: gbk -*- from distutils.core import setup import py2exe includes = ["encodings", "encodings.*"] options = {"py2exe": {"compressed": 1, "optimize": 2, "ascii": 1, "includes":includes, "bundle_files": 1} } setup( options = options, zipfile=None, name = "HelloGuys.", description = "this is a py2exe test", windows=[{"script": "F:\個人程序\Python\CSDN Code Edit\Code2Html.py", "icon_resources": [(1, "F:\書籍\個人圖標\圖標xp\Convert.ico")] }] )
下面列出他的一些 options
keyword |
description |
list of "data" files that you are going to need to run your executable such as .pngs, .jpgs |
In addition to the standard distutils setup keywords, the following py2exe keywords specify what and how to build.
keyword |
description |
console |
list of scripts to convert into console exes |
windows |
list of scripts to convert into GUI exes |
service |
list of module names containing win32 service classes |
com_server |
list of module names containing com server classes |
ctypes_com_server |
list of module names containing com server classes |
zipfile |
name of shared zipfile to generate; may specify a subdirectory; defaults to 'library.zip'. If zipfile is set toNone , the files will be bundled within the executable instead of 'library.zip'. |
options |
dictionary { "py2exe": { "opt1": val1, "opt2": val2, ... } } |
The option keyword takes the following set of dictionary key: value pairs. The dictionary "key" names and the "value" types are listed in the table below.
key |
value |
unbuffered |
if true, use unbuffered binary stdout and stderr |
optimize |
string or int of optimization level (0, 1, or 2) 0 = don’t optimize (generate .pyc) 1 = normal optimization (like python -O) 2 = extra optimization (like python -OO) See http://docs.python.org/distutils/apiref.html#module-distutils.util for more info. |
includes |
list of module names to include |
packages |
list of packages to include with subpackages |
ignores |
list of modules to ignore if they are not found |
excludes |
list of module names to exclude |
dll_excludes |
list of dlls to exclude |
dist_dir |
directory in which to build the final files |
typelibs |
list of gen_py generated typelibs to include |
compressed |
(boolean) create a compressed zipfile |
xref |
(boolean) create and show a module cross reference |
bundle_files |
bundle dlls in the zipfile or the exe. Valid values for bundle_files are: 3 = don't bundle (default) 2 = bundle everything but the Python interpreter 1 = bundle everything, including the Python interpreter |
skip_archive |
(boolean) do not place Python bytecode files in an archive, put them directly in the file system |
ascii |
(boolean) do not automatically include encodings and codecs |
custom-boot-script |
Python file that will be run when setting up the runtime environment |
Example:
setup( windows=['trypyglet.py'], options={ "py2exe":{ "unbuffered": True, "optimize": 2, "excludes": ["email"] } } )
For more information enter the following at the python command line:
>>> from distutils.core import setup >>> help(setup)
注意 windows 的用法,他能夠代替 console, 若是你要集成 wxpython 的時候,必定會用的 !
更多請查看 http://www.py2exe.org/index.cgi/ListOfOptions
若是程序中含有email類,而且壓縮時出現相似 「ImportError: No module named multipart 」 的錯誤,你須要以下的設置:
1. 嘗試將Lib下的email包,複製到當前文件夾中
2. 把['emai'] 放入includes中
3. 把['email']放入packages中
4. 繼續運行py2exe
如:
from distutils.core import setup import py2exe includes = ["encodings", "encodings.*",'email'] options = {"py2exe": { "compressed": 1, "optimize": 2, "includes": includes, "bundle_files": 1, "packages": ['email'], "dll_excludes": ["MSVCP90.dll"] } } setup( version = "0.1.0", description = "3th", name = "For My Lover", options = options, zipfile=None, windows=[{"script": "love.py", "icon_resources": [(1, "roses.ico")] }], )