pandas ValueError: numpy.dtype has the wrong size, try recompiling

后端 未结 6 1956
南方客
南方客 2020-12-10 12:34

I took a new clean install of OSX 10.9.3 and installed pip, and then did

pip install pandas
pip install numpy

Both installs seemed to be perfectly happ

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-10 12:48

    You can install previous version of pandas.

    pip uninstall numpy
    pip uninstall pandas
    pip install pandas==0.13.1
    

    In my situation it solved problem...

提交回复
热议问题