編譯模塊爲2禁制
yum -y install python26-setuptools
easy_install -U setuptools
# cd /usr/lib64/python2.6
# easy_install py_compilepython
python -O -m py_compile file.py 優化
-O 優化成字節碼
-m 表示把後面的模塊當成腳本運行
-OO 表示優化的同時刪除文檔字符串 文檔
也能夠寫一個腳原本實現:
Python代碼
import py_compile
py_compile.compile("file_path")
字符串