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

前端 未结 28 2523
清歌不尽
清歌不尽 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-27 17:05

    I had a same issue recently with Anaconda with Python 3.7.

    I solved this problem by downgrading python version to 3.6:

    conda install python=3.6
    

    and then by updating all the packages:

    conda update --all
    

提交回复
热议问题