python3.6怎么打包

python

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

pip install pyinstaller

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

添加环境变量

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

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

打包

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

pyinstaller -F test.py

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

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

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

执行生成过程

拷贝exe到当前文件夹

删除过程文件

:文件名注意后面无空格

set name=test

:执行打包命令,生成的exe会放入dist文件夹

pyinstaller -F %name%.py

:讲exe从dist文件夹拷贝到当前文件夹

copy .dist\%name%.exe .

:删除过程文件及文件夹

rmdir /s/q __pycache__

rmdir /s/q build

rmdir /s/q dist

del /q "*.spec"

以上是 python3.6怎么打包 的全部内容, 来源链接: utcz.com/z/525610.html

回到顶部