安装了anaconda后,在ipython中可以正常使用各种科学计算的包,但是在Pycharm中import则会显示
ModuleNotFoundError: No module named 'numpy'
这是因为pycharm中选择的Python并非anaconda中安装的pycharm,我们需要在
这时候只需要在PyCharm的settings( File->settings->project:当前项目名->Project Interpreter)中设置一下Interpreter就可以了。如下图所示,将其设置为Anaconda。
如果是安装了anaconda,就把路径设置为anaconda的路径,选择路径中的Python.exe 即可
这样程序就可以正常运行了