cx freeze打包Python程式

2021-07-10 17:59:27 字數 795 閱讀 6085

python程式打包成exe:

兩種比較好的方法:cx_freeze和pyinstaller。

cx_freeze用起來簡單,pyinstaller功能強能打包成單個檔案。

先說cx_freeze.

安裝完cx_freeze以後建立cx_freeze.bat,方法如下:

python cxfreeze-postinstall

或者手懶的直接自己建立:

@echo off

c:\python34\python.exe c:\python34\scripts\cxfreeze %*

之後新建乙個python檔案,內容如下,執行下就成了,用於ui的,不想要黑框,就用下面的win32gui的。

# -*-coding:utf-8-*-

import os

__author__ = 'adair'

dist_path = r'c:\users\rf-lab\desktop\dist'

target_file = r'otacore.py'

# os.system(r'c:\python34\scripts\cxfreeze.bat %s --target-dir %s' % (target_file, dist_path))

os.system(r'c:\python34\scripts\cxfreeze.bat %s --target-dir %s --base-name=win32gui' % (target_file, dist_path)

python 檔案用cx Freeze 打包

例如 我 安裝 python在 c python27 cx freeze安裝 完後在以下目錄 c python27 lib site packages cx freeze 在c python27 lib site packages cx freeze samples 下面 有幾個例子 setup.p...

python用cx Freeze打包程式

在python中比較常用的轉exe方法有三種,分別是cx freeze,py2exe,pyinstaller。py2exe恐怕是三者裡面知名度最高的乙個,但是同時相對來說它的打包質量恐怕也是最差的乙個。pyinstaller打包很好,但是操作工序較為複雜。個人還是推薦cx freeze。生成可執行程...

使用cxfreeze打包成exe檔案

最新版本python3.5以上直接使用 pip install cx freeze 命令安裝 1.安裝完成後如果沒有報錯的話這時候系統應該是沒有給我們自動生成cxfreeze.bat檔案 2.編寫cxfreeze.bat檔案 echo off e testtoools python3.4 pytho...