pip3 install
を使用してpandas
とmatplotlib
をインストールしました。次に、このスクリプトを実行しました。
import pandas as pd
import matplotlib.pyplot as plt
data = pd.ExcelFile("Obes-phys-acti-diet-eng-2014-tab.xls")
print (data.sheet_names)
このエラーを受け取りました:
dhcp-169-233-172-97:Obesity juliushamilton$ python3 ob.py
Traceback (most recent call last):
File "ob.py", line 4, in <module>
data = pd.ExcelFile("Obes-phys-acti-diet-eng-2014-tab.xls")
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pandas/io/Excel.py", line 169, in __init__
import xlrd # throw an ImportError if we need to
ImportError: No module named 'xlrd'
必要なxlrd
が欠落しているのはなぜですか?
新しいモジュールをインストールします。
pip install xlrd
「これはオプションの依存関係です pandas.pydata.org/pandas-docs/… 個別にインストールできます。」 ---(bernie 、今削除されたコメント内)