py2exe其實(shí)就是一款可以將將python2.7編寫的腳本輕松打包成exe格式的小工具。軟件安裝使用都很簡(jiǎn)單,小編也會(huì)提供簡(jiǎn)單的教程,需要的朋友下載試試吧!
py2exe怎么用
默認(rèn)情況下,py2exe在目錄dist下創(chuàng)建以下這些必須的文件:
1、一個(gè)或多個(gè)exe文件。
2、python##.dll。
3、幾個(gè).pyd文件,它們是已編譯的擴(kuò)展名,它們是exe文件所需要的;加上其它的.dll文件,這些.dll是.pyd所需要的。
4、一個(gè)library.zip文件,它包含了已編譯的純的python模塊如.pyc或.pyo
上面的mysetup.py創(chuàng)建了一個(gè)控制臺(tái)的helloword.exe程序,如果你要?jiǎng)?chuàng)建一個(gè)圖形用戶界的程序,那么你只需要將mysetup.py中的console=["helloworld.py"]替換為windows=["myscript.py"]既可。
1、創(chuàng)建您的設(shè)置腳本(setup . py)
py2exe延伸 Distutils 用一個(gè)新的“命令”。 如果你已經(jīng)安裝了第三方Python模塊的一個(gè)好機(jī)會(huì)你見過至少一個(gè)distutils命令:
C:\Tutorial>python setup.py install
“安裝”是一個(gè)Distutils的命令,安裝(通常是一個(gè)Python模塊或包)。 Distutils細(xì)節(jié)需要安裝中包含設(shè)置。 py(有時(shí)是其他相關(guān)文件)。
“py2exe”是一種新的Distutils命令導(dǎo)入py2exe時(shí)添加。 使用py2exe您需要?jiǎng)?chuàng)建一個(gè)設(shè)置。 py文件告訴Distutils和py2exe你想做什么。 這是一個(gè)設(shè)置。 py的簡(jiǎn)潔是適合我們的示例程序…
切換行號(hào)顯示
1 from distutils.core import setup
2 import py2exe
3
4 setup(console=['hello.py'])
2、運(yùn)行安裝腳本
下一步是運(yùn)行安裝腳本。 確保給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è)目錄運(yùn)行安裝腳本時(shí),構(gòu)建和區(qū)域構(gòu)建目錄作為工作空間在您的應(yīng)用程序正在打包。 它是安全的刪除后構(gòu)建目錄設(shè)置腳本運(yùn)行結(jié)束之后。 dist目錄中的文件都需要運(yùn)行您的應(yīng)用程序。
3、測(cè)試你的可執(zhí)行文件
既然已經(jīng)創(chuàng)建了包準(zhǔn)備好測(cè)試:
C:\Tutorial>cd dist
C:\Tutorial\dist>hello.exe
Hello World
優(yōu)秀的,它的工作原理! ! !
提示:這個(gè)版本僅適用于python2.7,其他版本一概行不通!
- PC官方版
- 安卓官方手機(jī)版
- IOS官方手機(jī)版