エラーを解消したい ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd. - Python
エラーの対処法
エラー発生個所は?
import pandas as pd
df = pd.read_excel(r'd:\temp\test.xlsx')
エラーメッセージ
エラーが下記の様に発生する場合
ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.
エラー対処法
pipによってxlrdのモジュールをインストールする
pip install xlrd
もしくは
pip3 install xlrd
関連
エラーメッセージ集
Excelファイルの読込 read_excel
Python - Pandas徹底解説
おすすめ記事
to_excelでxlsx,xlsファイルを書き込む / Python Pandas
数値による条件抽出 - Python Pandas
全国の町丁目レベル(189,540件)の住所データのオープンデータをPython Pandasで処理してみた
気象庁 台風位置表 をpython foliumで可視化する
read_excelでxls、xlsxを読み込む / Python pandas
その他ネタもの - Python
Supponsered
外部サイト
↓プログラムを学んでみたい場合、学習コースなどもおすすめです!