【Python】PyCharm报错:Missing required dependencies ['numpy']
问题
import pandas as pd
报错:
raise ImportError("Missing required dependencies {0}".format(missing_dependencies))
ImportError: Missing required dependencies ['numpy']
已经安装了numpy及其依赖,感觉import numpy出问题了,直接import numpy都有问题:
import numpy as nm
报错:
C:\MySoft\Python\Anaconda3\python.exe D:/PythonProjects/Demo/NetworkDemo.py
Traceback (most recent call last):
File "C:\MySoft\Python\Anaconda3\lib\site-packages\numpy\core\__init__.py", line 16, in <module>
from . import multiarray
ImportError: DLL load failed: 找不到指定的模块。
解决方案:
网上找了很多解决方案,折腾一下午最终解决,前提是安装了numpy及其依赖包仍出现问题,如果已经安装了还出现问题可以试试这个。
把 C:\MySoft\Python\Anaconda3\Library\bin 添加到系统变量,重启PyCharm。
- 点赞
- 收藏
- 关注作者
评论(0)