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

后端 未结 6 1954
南方客
南方客 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...

    0 讨论(0)
  • 2020-12-10 12:50
    sudo pip install pandas
    sudo easy_install --upgrade numpy
    

    should also realign everything.

    0 讨论(0)
  • 2020-12-10 12:59

    you can install pandas from its git repo without having to explicitly clone it

    pip install git+https://github.com/pydata/pandas.git
    

    that worked for me.

    0 讨论(0)
  • 2020-12-10 13:01

    open your python, check the imported version of your numpy.

    It is very likely that you have multiple numpy installed and python always grab the old one, just make sure to delete the old one would fix the problem.

    >>> import numpy as np
    >>> np.__version__
    >>> np.__file__
    #if numpy version <= 1.7 would have the error
    #find the file and delete it from (np.__file__)
    

    then install the latest numpy if you don't have it

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2020-12-10 13:12

    pip uninstall numpy uninstalls the old version of numpy

    pip install numpy finds and installs the latest version of numpy

    0 讨论(0)
提交回复
热议问题