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

前端 未结 28 2533
清歌不尽
清歌不尽 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 17:16

    I had to install this other package:

    sudo apt-get install libatlas-base-dev
    

    Seems like it is a dependency for numpy but the pip or apt-get don't install it automatically for whatever reason.

提交回复
热议问题