将Python脚本编译为.exe时出错

时间:2019-11-22 12:44:30

标签: python pyinstaller

我正在尝试从Python库pyinstaller将python脚本编译为.exe。但是,出现错误,如下所示:

TypeError: an integer is required (got type bytes)

我非常确定文件没有错误,该怎么解决?我首先尝试将其编译为.exe,因为这是我的数学项目,并且我希望任何人都可以玩它。我的代码:http://www.github.com/averwhy/UltraCoin

编辑:完全错误:https://pastebin.com/VVrUBGNn

1 个答案:

答案 0 :(得分:1)

这是pyinstaller的问题。

运行

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

来源: https://github.com/pyinstaller/pyinstaller/issues/4265