测试环境Win10+Python3.6.5+pyinstaller4.2
文章目录
- 1.第三方库安装
- 2.Python环境确认
- 3.exe程序封装命令
- 4.封装参数解析
1.第三方库安装
Python导出需要用到pyinstaller库
pyinstaller安装指令:
pip install pyinstaller
安装完成以后注意pyinstaller第三方库安装到那个Python版本环境下。
2.Python环境确认
当系统存在多版本Python时,需要注意编译程序使用的版本和pyinstaller使用版本是否一致,如果不一致后续可能导致部分库找不到的情况。
解决办法:
https://blog.csdn.net/qq_40902709/article/details/115211489?spm=1001.2014.3001.5501
3.exe程序封装命令
pyinstaller使用命令
pyinstaller -F -w 1.py
4.封装参数解析
参数解析:
-F:打包一个单个文件
-D:打包多个文件
-w:当程序启动的时候不会打开命令窗口