-
[에러해결] pandas | pd.read_excel 오류 해결 (ValueError)__Python 2021. 5. 29. 04:26
엑셀 데이터를 읽어오는데 다음과 같은 에러가 발생했다.
ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead.
[해결] !pip install openpyxl
excel 불러오기 깔끔하게 성공
단 excel은 csv 파일과 달리, sheet를 지정해줘야 한다. (╯°□°)╯
728x90'__Python' 카테고리의 다른 글
[에러해결] datetime | hour 24:00:00 변환 오류 (1) 2021.06.02 [pandas] DataFrame | 데이터프레임 병합하기(concat, merge) (0) 2021.06.02 [에러해결] colab | matplotlib 한글 폰트 설정하기 (0) 2021.06.01 [에러해결] datetime 출력 형식 변경 : .date() / busday_count() TypeError (0) 2021.05.29 [Python] pandas | 데이터프레임 모든 행과 열 출력하기 (0) 2021.03.17