Importing pandas shows ImportError: cannot import name hashtable

后端 未结 5 1912
北恋
北恋 2020-11-29 07:16

I have installed pandas on python 3.3, and coded like this:

import csv
import pandas
from pandas import DataFrame

csvdata = pandas.read_csv(\'datafile.csv\'         


        
5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 07:52

    I had the same problem too when I tried installing pandas 0.13.1. It installed but I could not import it.

    As @danioyuan suggests, I installed Cython using easy_install and now I am able to import pandas.

提交回复
热议问题