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

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

    Did you install miniconda and pandas without dependencies?

    Try installing numpy first with conda install numpy or pip install numpy.

    If you're on Windows you can get pre-compiled versions of most libraries that require compilation from here.

提交回复
热议问题