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
- git
- 깃에러
- 데이터분석
- 프로그래밍
- Python
- 코딩
- 라이브러리
- defaultbranch
- image
- 파이썬에러
- OS
- 파이썬
- 깃허브
- 이미지연산
- 코드
- 이미지
- 데이터
- 카파
- github
- powershell에러해결
- powershell에러
- 일치도
- 머신러닝
- 엑셀
- 이클립스프로젝트
- 이미지읽어오기
- 반복문
- gitcommand
- windowpowershell
- 통계
Archives
- Today
- Total
목록read_csv (1)
나중에 내가 보려고 만든 블로그
[Python] 'utf-8' codec can't decode byte 0xb4 in position 0: invalid start byte
파이썬에서 'utf-8' codec can't decode byte 0xb4 in position 0: invalid start byte 에러날때 해결하는 방법. 주로 read_csv, read_excel로 csv, 엑셀파일을 데이터프레임으로 불러올때 발생하고, 데이터에 한글있을때 발생하는 에러. 파일 불러올때 encoding='euc-kr' 혹은 'cp949'추가해주면 해결된다. 1 2 df = pd.read_csv('test.csv',encoding='euc-kr') df = pd.read_csv('test.csv',encoding='cp949') cs
Python
2021. 4. 23. 11:24