解决pycharm时报错,ImportError: DLL load failed
程序员文章站
2022-04-08 07:51:25
2020年8月30日15:44:44问题:在跑深度之眼pytorch框架班的线性回归代码时,运行lesson-03-Linear-Regression.py导入import matplotlib.pyplot as plt 画图的时候,出现了ImportError: DLL load failed解决方法:(1)先用 pip uninstall matplotlib,卸载matplotlib(2)再用 pip uninstall matplotlib 导入matplotlib,此时如.....
问题:在跑深度之眼pytorch框架班的线性回归代码时,运行lesson-03-Linear-Regression.py导入import matplotlib.pyplot as plt 画图的时候,出现了ImportError: DLL load failed
解决方法:
(1)先用 pip uninstall matplotlib,卸载matplotlib
(2)再用 pip uninstall matplotlib 导入matplotlib,此时如果用上面这语句可能会超时,那么我们可以将下载源切换到国内的清华源
即改用下面这语句,pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple (如果是下载其他安装包也是这样,后面添加一个国内的镜像,具体方法参考:https://blog.csdn.net/weixin_40345790/article/details/104504225)
本文地址:https://blog.csdn.net/weixin_40345790/article/details/108307133
推荐阅读
-
wxPython ImportError DLL load failed: %1 不是有效的 Win32 应用程序 解决办法
-
pycharm有关scipy,sklearn报错:ImportError: DLL load failed: 找不到指定的程序。
-
解决pycharm时报错,ImportError: DLL load failed
-
解决pycharm安装scrapy DLL load failed:找不到指定的程序的问题
-
import tensroflow时出现了ImportError: DLL load failed: 找不到指定的模块的解决办法
-
PySide2出现“ImportError: DLL load failed: 找不到指定的模块”的问题及解决方法
-
Python numpy报错:ImportError: DLL load failed
-
成功解决 'from torch._C import * E ImportError: DLL load failed' 问题
-
wxPython ImportError DLL load failed: %1 不是有效的 Win32 应用程序 解决办法
-
pycharm有关scipy,sklearn报错:ImportError: DLL load failed: 找不到指定的程序。