How to solve import error for pandas?

后端 未结 11 1740
忘掉有多难
忘掉有多难 2020-11-29 08:03

I installed Anaconda with python 2.7.7.
However, whenever I run \"import pandas\" I get the error:
\"ImportError: C extension: y not built. If you want to impo

11条回答
  •  粉色の甜心
    2020-11-29 08:40

    I was unable to upgrade pandas with regular

    pip install --upgrade pandas 
    
    "tensorflow 1.6.0 has requirement numpy>=1.13.3, but you'll have numpy 1.13.1 which is incompatible."
    

    However bumping it with:

    pip install --upgrade pandas --force
    

    solved issue completely

提交回复
热议问题