py2exe其實就是一款可以將將python2.7編寫的腳本輕松打包成exe格式的小工具。軟件安裝使用都很簡單,小編也會提供簡單的教程,需要的朋友下載試試吧!
py2exe怎么用
默認情況下,py2exe在目錄dist下創(chuàng)建以下這些必須的文件:
1、一個或多個exe文件。
2、python##.dll。
3、幾個.pyd文件,它們是已編譯的擴展名,它們是exe文件所需要的;加上其它的.dll文件,這些.dll是.pyd所需要的。
4、一個library.zip文件,它包含了已編譯的純的python模塊如.pyc或.pyo
上面的mysetup.py創(chuàng)建了一個控制臺的helloword.exe程序,如果你要創(chuàng)建一個圖形用戶界的程序,那么你只需要將mysetup.py中的console=["helloworld.py"]替換為windows=["myscript.py"]既可。
1、創(chuàng)建您的設(shè)置腳本(setup . py)
py2exe延伸 Distutils 用一個新的“命令”。 如果你已經(jīng)安裝了第三方Python模塊的一個好機會你見過至少一個distutils命令:
C:\Tutorial>python setup.py install
“安裝”是一個Distutils的命令,安裝(通常是一個Python模塊或包)。 Distutils細節(jié)需要安裝中包含設(shè)置。 py(有時是其他相關(guān)文件)。
“py2exe”是一種新的Distutils命令導入py2exe時添加。 使用py2exe您需要創(chuàng)建一個設(shè)置。 py文件告訴Distutils和py2exe你想做什么。 這是一個設(shè)置。 py的簡潔是適合我們的示例程序…
切換行號顯示
1 from distutils.core import setup
2 import py2exe
3
4 setup(console=['hello.py'])
2、運行安裝腳本
下一步是運行安裝腳本。 確保給py2exe命令和期望看到很多很多的輸出:
C:\Tutorial>python setup.py py2exe
running py2exe
*** searching for required modules ***
*** parsing results ***
creating python loader for extension 'zlib'
creating python loader for extension 'unicodedata'
creating python loader for extension 'bz2'
*** finding dlls needed ***
*** create binaries ***
*** byte compile python files ***
byte-compiling C:\Tutorial\build\bdist.win32\winexe\temp\bz2.py to bz2.pyc
byte-compiling C:\Tutorial\build\bdist.win32\winexe\temp\unicodedata.py to unicodedata.pyc
byte-compiling C:\Tutorial\build\bdist.win32\winexe\temp\zlib.py to zlib.pyc
skipping byte-compilation of c:\Python24\lib\StringIO.py to StringIO.pyc
[skipping many lines for brevity]
skipping byte-compilation of c:\Python24\lib\warnings.py to warnings.pyc
*** copy extensions ***
*** copy dlls ***
copying c:\Python24\lib\site-packages\py2exe\run.exe -> C:\Tutorial\dist\hello.exe
*** binary dependencies ***
Your executable(s) also depend on these dlls which are not included,
you may or may not need to distribute them.
Make sure you have the license if you distribute any of them, and
make sure you don't distribute files belonging to the operating system.
ADVAPI32.dll - C:\WINDOWS\system32\ADVAPI32.dll
USER32.dll - C:\WINDOWS\system32\USER32.dll
SHELL32.dll - C:\WINDOWS\system32\SHELL32.dll
KERNEL32.dll - C:\WINDOWS\system32\KERNEL32.dll
C:\Tutorial>
將創(chuàng)建兩個目錄運行安裝腳本時,構(gòu)建和區(qū)域構(gòu)建目錄作為工作空間在您的應用程序正在打包。 它是安全的刪除后構(gòu)建目錄設(shè)置腳本運行結(jié)束之后。 dist目錄中的文件都需要運行您的應用程序。
3、測試你的可執(zhí)行文件
既然已經(jīng)創(chuàng)建了包準備好測試:
C:\Tutorial>cd dist
C:\Tutorial\dist>hello.exe
Hello World
優(yōu)秀的,它的工作原理! ! !
提示:這個版本僅適用于python2.7,其他版本一概行不通!
- PC官方版
- 安卓官方手機版
- IOS官方手機版