Python Pandas - Missing required dependencies ['numpy'] 1

前端 未结 28 2549
清歌不尽
清歌不尽 2020-11-27 16:32

Since yesterday I\'ve had this error when I try to import packages on anaconda :

ImportError: Missing required dependencies [\'numpy\']

I have t

28条回答
  •  广开言路
    2020-11-27 16:52

    I had this same issue immediately after upgrading pandas to 0.19.2. I fixed it with the following install/uninstall sequence from the windows cmd line:

    pip uninstall pandas -y
    pip uninstall numpy -y
    pip install pandas
    pip install numpy
    

    This also broke my matplotlib install so I uninstalled/installed that as well.

    Very odd behavior for a seemingly routine upgrade.

提交回复
热议问题