numpy is already installed with Anaconda but I get an ImportError (DLL load failed: The specified module could not be found)

后端 未结 5 889
鱼传尺愫
鱼传尺愫 2020-11-30 04:03

I am using the Anaconda distribution with Python 3.7. Among the packages installed, I have numpy, pandas, etc. In PyCharm IDE, I have set the Project Interpreter to be the p

5条回答
  •  执笔经年
    2020-11-30 04:46

    Edit your System Environment Variable "PATH’ (refer steps here) by adding below given path.

    Note: Follow this step if you already have numpy installed.

    If using anaconda:
    C:\Users\\AppData\Local\Continuum\Anaconda\Library\bin\
    
    If using independent python interpreter:
    C:\Users\\AppData\Roaming\Python\Python\Library\bin
    

提交回复
热议问题