python3.6怎么打包

图片[1]-python3.6怎么打包-uusu优素-乐高,模型,3d打印,编程

安装pyinstaller,python安装目录下shift+右键打开cmd 或者Powershell窗口输入

pipinstallpyinstaller

python安装目录下\Scripts文件夹下会出现 pyinstaller.exe

添加环境变量

在系统变量PATH中再加入"python安装地址\Scripts",否则cmd中会提示

‘pyinstaller’不是内部或外部命令

打包

在*.py文件目录下shift+右键打开cmd 或者Powershell窗口输入

pyinstaller-Ftest.py

文件夹下会生成一堆文件,在dist文件夹下会生成想要的exe文件脚本

以上可写成bat脚本,命名make.bat,放test.py同级文件夹下

脚本中文件名改为自己文件名!!

执行生成过程

拷贝exe到当前文件夹

:文件名注意后面无空格
setname=test
:执行打包命令,生成的exe会放入dist文件夹
pyinstaller-F%name%.py
:讲exe从dist文件夹拷贝到当前文件夹
copy.\dist\%name%.exe.
:删除过程文件及文件夹
rmdir/s/q__pycache__
rmdir/s/qbuild
rmdir/s/qdist
del/q"*.spec"
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容