[Python] read_excel 오류 :: install xlrd
반응형
[ Error ]
Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.
[ Solution ]
# pip
pip install xlrd
# conda
conda install -c anaconda xlrd
728x90
'Python > Pandas' 카테고리의 다른 글
[Python] pd.read_csv 오류 :: UnicodeDecodeError (0) | 2021.03.07 |
---|---|
[Python] 고유값 & 고유값의 개수 & 값의 개수 :: unique / nunique / value_counts (1) | 2020.12.12 |
[Python] 엑셀 불러오기 :: pd.read_excel (3) | 2020.11.19 |
[Python] 데이터프레임 중복 제거 :: drop_duplicates (1) | 2020.11.16 |
[Python] 데이터프레임 합치기 :: pd.merge() (0) | 2020.10.13 |
Comments