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

前端 未结 28 2464
清歌不尽
清歌不尽 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:59

    I had the same issue. It was because I had multiple versions of numpy installed. Remove all versions by repeatedly using:

    pip uninstall numpy

    Then re-install it with the command:

    pip install numpy

提交回复
热议问题