我正在尝试在使用 iPython 时导入熊猫。我的总体目的是使用 XLwings。
我在 Windows 7 上使用 Anaconda 安装 Python、pandas 和所有依赖项。
这是我的代码:
from pandas import DataFrame
这使:
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.
任何有在 Windows 上的 iPython 中使用 Python/pandas 经验的人都可以帮助我了解如何解决此错误吗?
具体来说,我在哪里运行“python setup.py build_ext --inplace”?
谢谢!