J'ai installé pandas
et matplotlib
en utilisant pip3 install
. J'ai ensuite exécuté ce script:
import pandas as pd
import matplotlib.pyplot as plt
data = pd.ExcelFile("Obes-phys-acti-diet-eng-2014-tab.xls")
print (data.sheet_names)
et a reçu cette erreur:
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'
Pourquoi le xlrd
nécessaire est-il manquant?
Installez le nouveau module:
pip install xlrd
"C'est une dépendance facultative pandas.pydata.org/pandas-docs/… Vous pouvez l'installer séparément." --- (bernie , dans un commentaire maintenant supprimé.)