李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘

在学习李沐pytorch版的动手学习深度学习,在从d2l包导入torch时from d2l import torch as d2l,发现缺少一个matplotlib_inline的库,在conda中也无法安装上matplotlib_inline,在网上也没有找到比较好的解决办法,于是在github上手动下载了一个matplotlib_inline的库安装在anaconda3的总库中得以解决,总体方法见下面流程
李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘_第1张图片

方法

首先进入anaconda3存放所有库的文件夹,一般是~\anaconda3\Lib\site-packages,~是你的home文件夹。进入该文件夹之后,用gitbash下载github上的matplotlib_inline库$ git clone https://github.com/ipython/matplotlib-inline
李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘_第2张图片

下载之后,为下载的文件夹重命名为matplotlib_inline (为了使d2l可以找到该库)
李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘_第3张图片
之后,重启jupyter notebook,就可以成功执行from d2l import torch as d2l语句了
李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘_第4张图片
图片也可以成功画的出来
李沐动手学习深度学习from d2l import torch as d2l时No module named ‘matplotlib_inline‘_第5张图片
另外需要注意,我是直接用的anaconda的base环境,如果有使用虚拟环境的情况,则要把该matplotlib_inline文件夹放入虚拟环境的仓库中~\anaconda3\envs\d2l\Lib\site-packages,重启jupyter notebook

你可能感兴趣的:(深度学习)