[pandas] Excel file format cannot be determined, you must specify an engine manually

우당탕탕 dlog·2023년 10월 23일
0

Pandas로 excel (xlsx) 파일을 열다가 자주 만나는 에러

ValueError: Excel file format cannot be determined, you must specify an engine manually

해결방법은 아주 간단하다.

! pip install openpyxl

df = pd.read_excel('test.xlsx', engine='openpyxl')

만약, 확장자가 xlsx 가 아닌 xls 파일일 경우에는 아래와 같이 xlrd engine으로 열어주기.

! pip install xlrd

df = pd.read_excel('test.xlsx', engine='xlrd')
profile
차근차근 쌓아가는 dlog

0개의 댓글