Python打包发布
作者:互联网
天早上想起,Python项目如何打包发布呢?因此特意学习了下
比较好用的为pyinstaller,可以支持在window和linux下使用
1.安装
pip install pyinstaller
2.使用
格式:
pyinstaller -F 待打包文件名
eg:
pie.py
import matplotlib.pyplot as plt labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' sizes = [15, 30, 45, 10] explode = (0, 0.1, 0, 0) fig1, ax1 = plt.subplots() ax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True, startangle=90) ax1.axis('equal') plt.show()
打包
pyinstaller -F pie.py
在当前的目录下,将会生成两个文件夹:build和dist,还有pie.spec
dist里面就是所有可执行文件
.spec告诉pyinstaller如何打包的配置文件
双击dist下的exe
标签:ax1,dist,Python,pie,explode,发布,pyinstaller,打包 来源: https://www.cnblogs.com/baby123/p/13091152.html