ga('set', 'anonymizeIp', 1);
Categories: CodingPython

[python] pyinstaller pack python code error with python3.8

Share

在python3.8環境下,使用pyinstaller將python打包成exe時遇到TypeError之解決方式。

錯誤訊息如下

TypeError: an integer is required (got type bytes)

解法

請先解除安裝原本的pyinstaller
pip uninstall pyinstaller

使用以下新版本安裝(compatible with python 3.8)
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz

再次執行pyinstaller就會發現成功運作。


pyinstaller教學文章 – 將.py打包成exe執行檔

pyinstaller使用教學

Jys

Published by
Jys

Recent Posts

[python] Flask Create RESTful API

This article gi... Read More

3 年 前發表

[Javascript] 新增/刪除JSON中key值

在web訊息交換常會需要對JS... Read More

3 年 前發表

[JAVA] SQL Server Connection

本文介紹JAVA連線SQL s... Read More

3 年 前發表