Importing pandas shows ImportError: cannot import name hashtable

后端 未结 5 1920
北恋
北恋 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 08:07

    The pandas Python 3.3 binary here http://www.lfd.uci.edu/~gohlke/pythonlibs/ seems to have not been compiled successfully. I haven't had the time to configure my build machine to build and test Python 3.3 binaries but I do know that things work on Python 3.3 on the other platforms.

提交回复
热议问题