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

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

    I had this problem with last version of numpy 1.16.x

    Problem resolved with

    python3 -m pip uninstall numpy

    python3 -m pip install numpy==1.14.0

提交回复
热议问题