東坡下載:內(nèi)容最豐富最安全的下載站!

幫助|文件類型庫|最新更新|下載分類|排行榜

編程相關(guān)破解相關(guān)編程工具反編譯安裝制作程序源碼軟件補(bǔ)丁數(shù)據(jù)庫Visual Studiovc++visualbasicdreamweaver

首頁編程開發(fā)編程相關(guān) → python打包成exe工具(py2exe) 0.6.9 win7 64位版

python打包成exe工具(py2exe)

python打包成exe工具(py2exe)0.6.9 win7 64位版

  • 大。169KB
  • 語言:英文
  • 平臺(tái):WinAll
  • 更新:2016-03-15 14:53
  • 等級(jí):
  • 類型:編程相關(guān)
  • 網(wǎng)站:http://www.py2exe.org/
  • 授權(quán):免費(fèi)軟件
  • 廠商:
  • 產(chǎn)地:國外軟件
好用好玩 50%(0)
坑爹 坑爹 50%(0)
軟件介紹軟件截圖相關(guān)軟件軟件教程網(wǎng)友評(píng)論下載地址

相關(guān)推薦: py2exe python打包成exe

    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ī)版

    python打包成exe工具(py2exe)截圖

    下載地址

    python打包成exe工具(py2exe) 0.6.9 win7 64位版

    熱門評(píng)論
    最新評(píng)論
    發(fā)表評(píng)論 查看所有評(píng)論(0)
    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過審核才能顯示)

    編輯推薦

    本類軟件必備

    編程UltraEditvc++6.0Notepad++編譯VBILSpyHopper數(shù)據(jù)MySQLoracleaccess設(shè)計(jì)DreamweaverfireworksFlash

    報(bào)錯(cuò)

    請(qǐng)簡(jiǎn)要描述您遇到的錯(cuò)誤,我們將盡快予以修正。

    轉(zhuǎn)帖到論壇
    輪壇轉(zhuǎn)帖HTML方式

    輪壇轉(zhuǎn)帖UBB方式