A/Python
python pyinstaller decode
성남개발자
2018. 11. 6. 13:34
파이썬으로 exe 파일을 만드는 pyinstaller를 사용 중에 decode 관련 버그가 있어서 검색해서 찾았다.
I found an answer on another forum. I change the line number 369 in the
Python\Lib\site-packages\Pyinstaller\compat.py
file:out = out.decode(encoding)
to
out = out.decode(encoding, errors='ignore')
Now I can compile my script without any issue. I still don't know why my issue happened in the first place but at least that compiles now.