將python指令碼檔案包裝成可執行檔案,其目的有二:
一則: 不需要依賴python編譯器就可以執行軟體
二則: 不想讓自己的原始碼公布出去
常用的工具有: py2exe、cx_freeze等
【工具:py2exe】
安裝該工具很簡單:
只需要從官方**:
安裝後,執行import py2exe,不報錯則表示安裝成功!
>>> import py2exe
>>>
note:
目前該工具只支援到python2.7, 對於python3而言,必須借助另外乙個工具:cx_freeze
第一步: 準備源**,假如名為:hello.py
第二步: 準備編譯指令碼,假如名為:setup.py
from distutils.core import setup
import py2exe
setup(windows=['hello.py'])
第三步: 執行命令: setup.py py2exe
d:\temp>setup.py py2exe
執行之後,會在我當前執行的目錄下(d:\temp)預設生成dict目錄,裡面的檔案如下:
預設情況下,py2exe在目錄dist下建立以下這些必須的檔案:
1、乙個或多個exe檔案。如本例為: hello.exe
2、python##.dll。 如本例中: python27.dll
3、.pyd檔案,它們是已編譯的副檔名,它們是exe檔案所需要的;加上其它的.dll檔案,這些.dll是.pyd所需要的。
4、乙個library.zip檔案,它包含了已編譯的純的python模組如.pyc或.pyo
第四步: 雙擊hello.exe可執行檔案,跟源**執行後同樣的結果:
1:執行setup.py --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
--no-user-cfg ignore pydistutils.cfg in your home directory
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.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
2:乙個詳細的編譯指令碼
# -*- coding: cp936 -*-
from distutils.core import setup
import py2exe
includes = ["encodings", "encodings.*"]
options = }
setup(
options=options, # 是否需要可選項,預設為none
zipfile=none, # 是否需要壓縮像,預設為none
console=, # 針對cmd控制埠
windows=, # 針對gui圖形視窗
version = "v1.01", # 版本資訊
description = "py2exe testing",# 描述資訊
name = "hello, py2exe", # 名字資訊
)
詳情,請參考官方文件: Python 將檔案描述符包裝成檔案物件
你有乙個對應於作業系統上乙個已開啟的i o通道 比如檔案 管道 套接字等 的整型檔案描述符,你想將它包裝成乙個更高層的python檔案物件。乙個檔案描述符和乙個開啟的普通檔案是不一樣的。檔案描述符僅僅是乙個由作業系統指定的整數,用來指代某個系統的i o通道。如果你碰巧有這麼乙個檔案描述符,你可以通過...
python 將檔案描述符包裝成檔案物件
有乙個對應於作業系統上乙個已開啟的i o 通道 比如檔案 管道 套接字等 的整型檔案描述符,你想將它包裝成乙個更高層的python 檔案物件。乙個檔案描述符和乙個開啟的普通檔案是不一樣的。檔案描述符僅僅是乙個由作業系統指定的整數,用來指代某個系統的i o 通道。如果你碰巧有這麼乙個檔案描述符,你可以...
Python編寫簡易指令碼檔案
選用了nodepad進行編寫 最後儲存成 x.py格式即可,同理記事本啊什麼的也可以,對接nodepad editplus之類 usr bin env python3 age int input age of the dog print if age 0 print this can hardly ...