-
파이썬 pandas xlrd.biffh.XLRDError: Excel xlsx file; not supported 에러개발 언어/Python 2024. 3. 31. 16:29반응형# 엑셀 파일 읽기df = pd.read_excel(excel_file)
실행 시, 에러가 발생한다.
xlrd.biffh.XLRDError: Excel xlsx file; not supported
I am trying to read a macro-enabled Excel worksheet using pandas.read_excel with the xlrd library. It's running fine in local, but when I try to push the same into PCF, I am getting this error: 202...
stackoverflow.com
xlrd에서 더이상 xls 외의 파일을 지원하지 않음.
engine='openpyxl' 옵션을 사용하여 파일을 파싱 할 수 있다.
728x90반응형'개발 언어 > Python' 카테고리의 다른 글
스피커, 헤드셋 전환 원클릭 프로그램 만들기 (0) 2024.08.15 [실전] 파이썬으로 웹크롤링을 해보자 - Selenium으로 원하는 정보 크롤링하기 (0) 2024.04.01 VS Code에 Anaconda 연동하는 방법 (0) 2023.09.05 Anaconda 에서 Python 버전 변경하는 방법 (0) 2023.09.05