14
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Pandasで『Install xlrd >= 0.9.0 for Excel support』の解決方法【Python】

Last updated at Posted at 2018-11-07

ImportError: Install xlrd >= 0.9.0 for Excel support

エラーについて

Pandas にて Excel ファイル(.xls)などを読み込む際に、

import pandas as pd

pd.read_excel("file.xls")

以下のように、xlrdが必要であるとimportエラーが出ることがある。

ImportError: Install xlrd >= 0.9.0 for Excel support

解決方法

単純にxlrdをインストールすると解消される。

pip install xlrd

(pip を pip3 で読み出している環境ではpip3 install xlrdとすれば良い。)

補足: **xlrd**とは

公式ページでは、

Library for developers to extract data from Microsoft Excel (tm) spreadsheet files

Excel ファイルからデータを抽出するためのライブラリ

と説明されている。

14
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?