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

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

    The data manipulation capabilities of pandas are built on top of the numpy library. In a way, numpy is a dependency of the pandas library. If you want to use pandas, you have to make sure you also have numpy. When you install pandas using pip, it automatically installs numpy. If it doesn't, try the following

    pip install -U numpy pandas

    For conda

    conda install numpy pandas

提交回复
热议问题