728x90
윈도우에 pip install 하는 중에 오류 발생..
발생한 오류
UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 1091: illegal multibyte sequence
해결방법(encoding='utf-8' 구문 추가)
- encoding='utf-8' 추가
1. 파이썬설치경로\Python\Python37\Lib\distutils\text_file.py (115번째줄)
encoding='utf-8' 구문 추가
2. 파이썬설치경로\python\python37\lib\configparser.py (695번째줄)
encoding=encoding 삭제또는 주석 후 encoding='utf-8' 구문 추가
참고
https://stackoverflow.com/questions/10487563/unicode-error-handling-with-python-3s-readlines
728x90
'개발 > Python' 카테고리의 다른 글
[python/linux] 파이썬 nohup 사용법(백그라운드,데몬실행) (0) | 2022.12.09 |
---|---|
[오라클/파이썬] DPI-1047오류 해결방법(oracledb) (0) | 2022.10.12 |
[Linux/Ubuntu] Ubuntu 20.04에 python3.7 설치 (0) | 2021.01.27 |
[python] ImageAI 사용해서 image Object Detection(1) (0) | 2021.01.22 |
[python] 오프라인에서 pip install 하여 package 설치하기 (0) | 2020.11.03 |