Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 금융문자분석경진대회
- 편스토랑
- ChatGPT
- ubuntu
- programmers
- 프로그래머스
- SW Expert Academy
- 우분투
- dacon
- 편스토랑 우승상품
- 데이콘
- gs25
- github
- Git
- 프로그래머스 파이썬
- hackerrank
- leetcode
- 맥북
- Kaggle
- 코로나19
- 파이썬
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- 캐치카페
- 백준
- PYTHON
- Baekjoon
- 자연어처리
- 더현대서울 맛집
- Docker
Archives
- Today
- Total
솜씨좋은장씨
[Python] Pandas read_excel 에러 - ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead. 해결방법 본문
Programming/Python
[Python] Pandas read_excel 에러 - ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead. 해결방법
솜씨좋은장씨 2021. 9. 6. 11:44728x90
반응형
👨🏻💻 오류 내용
excel_df = pd.read_excel("./test_excel.xlsx")
Excel파일을 읽어오려고 Pandas의 read_excel을 활용하려고 하니
ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.
위와 같은 오류가 발생했습니다.
내용을 잘 읽어보면 xlrd의 버전이 2.0 이상부터는 xls 형식만 지원한다! 라고 되어있습니다.
이에 xlrd의 버전을 낮추어 보아도 오류가 해결되지 않았습니다.
👨🏻💻 해결방법
$ pip install openpyxl
xlrd 대신 openpyxl을 설치하면 해결됩니다.
읽어주셔서 감사합니다.
'Programming > Python' 카테고리의 다른 글
[Python] AttributeError: 'NoneType' object has no attribute 'encoding' using pymysql 해결방법 (0) | 2021.10.26 |
---|---|
[FastAPI] Base64 형식으로 파일을 요청 받고 활용하는 방법 (Python) (0) | 2021.09.27 |
[Python] OpenCV TypeError: rectangle() missing required argument 'rec' (pos 2) 해결방법 (0) | 2021.08.23 |
[Python] round 함수 사용 시 주의 사항! (0) | 2021.08.22 |
[Python] UnicodeDecodeError : can't decode byte 코드 별 해결 방법! (0) | 2021.08.17 |
Comments