관리 메뉴

솜씨좋은장씨

[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:44
728x90
반응형

👨🏻‍💻 오류 내용

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을 설치하면 해결됩니다.

 

읽어주셔서 감사합니다.

 

Comments