jupyter notebook 报错 ImportError: No module named matplotlib的解决办法

解决办法:

打开Anaconda Prompt  列出conda环境:

conda info --envs

结果显示:

 
 

激活tensorflow

activate tensorflow

最后用pip安装matplotlib模块(注意:该步骤是在命令行窗口进行的):

pip install matplotlib

安装完后即可解决!

发布了39 篇原创文章 · 获赞 8 · 访问量 9174

猜你喜欢

转载自blog.csdn.net/cxd3341/article/details/103787598