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

后端 未结 5 891
鱼传尺愫
鱼传尺愫 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:32

    Get the os environment path like:

    import os
    os.environ['PATH']
    

    Now, add this path to the environment variable PATH in pycharm debugger/console output. It works.

提交回复
热议问题