¿Cómo resolver el error de importación de pandas con iPython Notebook en Windows?

Estoy tratando de importar pandas mientras uso iPython. Mi propósito general es usar XLwings.

Estoy en Windows 7 y he usado Anaconda para instalar Python, pandas y todas las dependencias.

Aquí está mi código:

from pandas import DataFrame

Lo que da:

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.

¿Puede alguien con experiencia en el uso de Python / pandas en iPython en Windows ayudarme a entender cómo resolver este error?

Específicamente, ¿dónde ejecuto "python setup.py build_ext --inplace"?

¡Gracias!

Respuestas a la pregunta(2)

Su respuesta a la pregunta