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

扫描二维码关注公众号,回复: 8436042 查看本文章

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

4.再次执行打包命令:

pyinstaller -F 123.py

打包成功! 

猜你喜欢

转载自www.cnblogs.com/phplzx/p/12155167.html
今日推荐