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

后端 未结 6 1968
南方客
南方客 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 13:08

    Uninstall both numpy and pandas and try installing pandas from source.

    pip uninstall numpy
    pip uninstall pandas
    git clone git://github.com/pydata/pandas.git
    cd pandas
    python setup.py install
    

    This worked for me and I am now able to use the latest version of pandas.

提交回复
热议问题