반응형
1. 문제 : UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte
오류가 발생
2. encoding='cp949' 를 추가한다.
# 2분 정도 소모
hospdf = pd.read_csv(os.path.join(PATH, file), encoding='cp949')
hospdf.head()
# 2분 정도 소모
hospdf = pd.read_csv(os.path.join(PATH, file), encoding='cp949')
hospdf.head()
반응형
'머신러닝,딥러닝' 카테고리의 다른 글
Tensorflow 2.4.0을 설치할 때 라이브러리 계속 충돌 (0) | 2023.06.19 |
---|---|
Graph Execution Error 해결하기 : cuda에 맞는 tensorflow 버전 재설치하기 (0) | 2023.06.18 |
youtube-dl 사용하기 / 구간 별로 cut할 때 여러 명령어 (0) | 2023.06.01 |
youtube-dl 사용하기 / Error: Unable to extract uploader id 에러 해결하기 (0) | 2023.06.01 |
youtube 8m tf record의 동영상 접근해보기 (0) | 2023.05.17 |
AttributeError: module 'tensorflow' has no attribute 'python_io' 에러 해결하기 (0) | 2023.05.17 |
[Error] onnx importerror (0) | 2023.05.08 |
pip install insightface 오류날 때 (onnx install 오류 해결) (0) | 2023.05.04 |