Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 정보처리기사
- ann
- Django
- java
- repository 복구
- BPTT
- 자바
- Git
- RNN
- 파이썬
- 리눅스7장
- 운영체제
- github branch
- Python
- MAC OS
- 운영체제연습문제
- ai개발밋업
- 판교퇴근길밋업
- 우분투리눅스
- homebrew설치
- AIStages
- 리눅스연습문제
- 2020정보처리기사
- Swing
- 딥러닝
- CNN
- 부스트캠프 AI Tech
- 쉽게배우는운영체제
- GitHub
- backpropagation
Archives
- Today
- Total
코딩하는 애옹😸
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte 본문
Programming/Issues
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte
DevYe 2020. 5. 27. 03:42728x90
반응형
Error Message
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte

How to solve?
csv 파일을 encoding='cp949'로 읽음
a = pd.read_csv('aa.csv', encoding = 'cp949')
반응형
'Programming > Issues' 카테고리의 다른 글
Error: ENOSPC: System limit for number of file watchers reached (0) | 2022.05.27 |
---|---|
No module named keras (0) | 2020.05.15 |
ValueError: multilabel-indicator is not supported (0) | 2020.05.14 |