python 2.7 module pandas not installing “cannot import name hashtable”

眉间皱痕 提交于 2019-12-05 05:43:15

The recommended way to install pandas is via pip:

pip install pandas

This hashtables error arises from the cython files not being built. This error message will be more informative from 0.11.1.

Try running your code in Spyder (Anaconda -> Spyder). It worked for me.

Check that you have python scripts included in your system path variable. In my case I had to add "C:\Python27\Scripts"

I was having a similar problem when downloading Pandas to my Windows 8 system. The first error I had was an egg error, but after installing some packages I think I have the solution.

First look at the previous pip errors with Pandas, make sure you have the most updated pip.

The second part is downloading wheel using

pip install wheel 

After installing wheel and having the dependencies for panda and using pip it worked correctly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!