时间:2021-05-22
最近项目中需要Python的打包,看到网上也没有很详细的资料,于是做了一些示例程序。研究了一下,Python如何在Windows和Linux上打包
背景
Python版本:3.6.
Windows版本:Windows 10 家庭中文版 64-bit (10.0, Build 18362) (18362.19h1_release.190318-1202)
Linux版本:centos7.
今天没时间研究cx_Freeze,先研究了一下PyInstaller。
py2exe是一个将python转换成windows上的可独立执行的可执行程序(*.exe)的工具。不过,该可执行程序,只能在相同的Windows系统下运行,而且不适合Linux。果断被我舍弃不在研究了。
cx_Freeze 是一个类似 py2exe 的工具,但 cx_Freeze 可以在 linux 下可以直接执行的 ELF 格式的二进制可执行文件,也可以在windows上执行。
cx_Freeze的作用可以让python程序可以脱离python运行环境,在没有安装python的微型linux系统(例如cdlinux、tinycore等)里,方便地运行你的python程序。
程序简介:https://pypi.org/project/cx-Freeze/5.0/
号称是目前最全面的打包程序,然后我看了一下程序更新时间。一看是10天前,嗯,不错,就它了。
程序简介:https://pypi.org/project/PyInstaller/
看了一下参数介绍如下:
核心源码
#! -*- coding: utf-8 -*-"""Author: ZhenYuShaCreate Time: 2020-1-20Info: Python打包示例1,单个文件打包 “pyinstaller -F(单个可执行文件) 程序源 -n 程序名 -w(去掉控制台窗口,这在GUI界面时非常有用) -i 图标.ico” “pyinstaller -F test1/Demo_Test1_Python.py”"""def bubble_sort(arr): """ 冒泡排序 :param arr: :return: """ for i in range(1, len(arr)): for j in range(0, len(arr)-i): if arr[j] > arr[j+1]: arr[j], arr[j + 1] = arr[j + 1], arr[j] return arrif __name__ == '__main__': test = [1, 8, 123, 18, 99, 300] print("************************************") print("* 冒泡排序 *") print("************************************") print("源列表:", test) result = bubble_sort(test) print("排序后:", result) print("************************************") input("按任意键退出...")程序运行
打包后效果
核心源码
#! -*- coding: utf-8 -*-"""Author: ZhenYuShaCreate Time: 2020-1-20Info: Python打包示例2,多个文件打包 “pyinstaller -F(单个可执行文件) 程序源 -n 程序名 -w(去掉控制台窗口,这在GUI界面时非常有用) -i 图标.ico” “pyinstaller -F test2/Demo_Test2_Python.py”"""from test2.Demo_bubble_sort import bubble_sortfrom test2.Demo_heap_sort import heap_sortif __name__ == '__main__': test1 = [1, 8, 123, 18, 99, 300] test2 = test1[:] print("************************************") print("* 两个排序 *") print("************************************") print("列表1 id:", id(test1)) print("列表2 id:", id(test2)) print("源列表1:", test1) print("源列表2:", test2) result1 = bubble_sort(test1) result2 = heap_sort(test1) print("冒泡后:", result1) print("堆排后:", result2) print("************************************") input("按任意键退出...")程序运行
打包命令
pyinstaller -F test2/Demo_Test2_Python.py打包后效果
核心源码
#! -*- coding: utf-8 -*-"""Author: ZhenYuShaCreate Time: 2020-1-20Info: Python打包示例3,多层文件打包 “pyinstaller -F(单个可执行文件) 程序源 -n 程序名 -w(去掉控制台窗口,这在GUI界面时非常有用) -i 图标.ico” “pyinstaller -F test3/Demo_Test3_Python.py”"""from test3.sort.Demo_bubble_sort import bubble_sortfrom test3.sort.Demo_heap_sort import heap_sortfrom test3.Demo_test import Testif __name__ == '__main__': test1 = [1, 8, 123, 18, 99, 300] test2 = test1[:] print("************************************") print("* 两个排序 *") print("************************************") print("列表1 id:", id(test1)) print("列表2 id:", id(test2)) print("源列表1:", test1) print("源列表2:", test2) result1 = bubble_sort(test1) result2 = heap_sort(test1) print("冒泡后:", result1) print("堆排后:", result2) Test.run() print("************************************") input("按任意键退出...")程序运行
打包命令
pyinstaller -F test4/Demo_Test4_Python.py -n Test4 -i test4/test4.ico打包后效果
核心源码
#! -*- coding: utf-8 -*-"""Author: ZhenYuShaCreate Time: 2020-1-20Info: Python打包示例5,多层文件打包修改程序名 linux打包 “pyinstaller -F(单个可执行文件) 程序源 -n 程序名 -w(去掉控制台窗口,这在GUI界面时非常有用) -i 图标.ico” “-p 表示自定义需要加载的类路径(一般情况下用不到)” “pyinstaller -F Demo_Test5_Python.py -n Test5”"""from sort.Demo_bubble_sort import bubble_sortfrom sort.Demo_heap_sort import heap_sortfrom Demo_test import Testif __name__ == '__main__': test1 = [1, 8, 123, 18, 99, 300] test2 = test1[:] print("************************************") print("* 两个排序 *") print("************************************") print("列表1 id:", id(test1)) print("列表2 id:", id(test2)) print("源列表1:", test1) print("源列表2:", test2) result1 = bubble_sort(test1) result2 = heap_sort(test1) print("冒泡后:", result1) print("堆排后:", result2) Test.run() print("************************************") input("按任意键退出...")程序运行
打包后效果
我是用 pip install 安装的pyinstaller,于是先find了一下,找到了此命令,于是就做了个软链接。
解决方案,直接将安装目录下面的pyinstaller包作为软链接到/usr/bin下
ln -s /usr/local/python3.6.8/bin/pyinstaller /usr/bin/pyinstaller3.这种错误,人家已经把解决方案说出来了,就是需要重新编译嘛,那我们就按照他的来就OK了。先找到源码按照的目录,并按照以下命令操作。
./configure --prefix=/usr/local/python3.6.8(需要安装的目录) --enable-shared --with-sslmakemake install解决方案,在安装目录找到此文件,并拷贝到/usr/lib64目录下:
本文主要讲解了如何在windows与linux下打包Python3程序的详细方法,更多关于打包Python程序的知识请查看下面的相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1、唠唠叨叨最近项目中需要Python的打包,看到网上也没有很详细的资料,于是做了一些示例程序。小小的研究了一下,Python如何在Windows和Linux上
新搞了台linux云主机,瞎折腾折腾,先装个Python3。Linux环境下有其他软件需要Python2,如YUM,所以安装的Python3需要与Python2
Linux下安装Python3.6和第三方库如果本机安装了python2,尽量不要管他,使用python3运行python脚本就好,因为可能有程序依赖目前的py
Linux下运行jar包的方法介绍当需要把在Windows上开发的Java程序用在Linux上运行时,就需要吧该Java程序打包成jar包上传到Linux上去运
Linux下默认系统自带python2.6的版本,这个版本被系统很多程序所依赖,所以不建议删除,如果使用最新的Python3那么我们知道编译安装源码包和系统默认