hanker

Python - read_excel 에러 (ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.) 본문

Python/Python Error

Python - read_excel 에러 (ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.)

hanker 2021. 3. 9. 09:52
반응형

ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.

 

pandas로 read_excel(xlms)시 오류가 발생했다. 

오류 로그에 xlrd 2.0 이상 버전은 xls만 지원한다고 한다.

xlrd 버전을 1.0.2로 바꾸고 진행해도 오류가 안없어져서 openpyxl을 설치했더니 오류가 나지 않는다!

 

pip install openpyxl

 

반응형