python:使用PyInstaller打包成exe文件,以及TypeError: an integer is required (got type bytes)异常解决


用python3.6以上使用pyinstaller打包会出现 TypeError: an integer is required (got type bytes)异常, 解决办法如下:

1. 安装pyinstaller

pip install PyInstaller

 

 

 

2. 打包单个文件

PyInstaller -F xxx.py

 

 

3. 出现异常 TypeError: an integer is requried(got type bytes)

原因:pyinstaller版本问题

解决方案:命令行输入如下命令卸载之前版本pyinstaller,更新为最新版本

Tips: 出现异常请更新pip:python -m pip install --upgrade pip

pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz

 

 

4.再次执行打包命令:

pyinstaller -F 123.py

 

打包成功! 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM