Wie löse ich den Importfehler für Pandas mit iPython Notebook unter Windows?

Ich versuche Pandas zu importieren, während ich iPython verwende. Mein Hauptzweck ist die Verwendung von XLwings.

Ich arbeite unter Windows 7 und habe mit Anaconda Python, Pandas und alle Abhängigkeiten installiert.

Hier ist mein Code:

from pandas import DataFrame

Was gibt:

ImportError                               Traceback (most recent call last)
<ipython-input-7-26dfcabfb474> in <module>()
----> 1 from pandas import DataFrame

C:\Users\Accounting\Anaconda\lib\site-packages\pandas\__init__.py in <module>()
     11                       "pandas from the source directory, you may need to run "
     12                       "'python setup.py build_ext --inplace' to build the C "
---> 13                       "extensions first.".format(module))
     14 
     15 from datetime import datetime

ImportError: C extension: hashtable not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace' to build the C extensions first.

Kann jemand mit Erfahrung in der Verwendung von Python / Pandas in iPython unter Windows mir helfen, diesen Fehler zu beheben?

Speziell wo starte ich "python setup.py build_ext --inplace"?

Vielen Dank

Antworten auf die Frage(4)

Ihre Antwort auf die Frage