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

前端 未结 28 2454
清歌不尽
清歌不尽 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 the same issue while using Microsoft Visual Code with Python 3.7.3 64-bit('base':conda)as my python interpreter. Before running any code type the following three commands:

    C:/ProgramData/Anaconda3/Scripts/activate #activate conda Scripts directory
    conda activate base                       #activate conda
    & C:/ProgramData/Anaconda3/python.exe     #to run python
    

提交回复
热议问题