jupyter notebook 报错 ImportError: No module named matplotlib

解决办法:

打开Anaconda Prompt  列出conda环境:

conda info --envs

结果显示:

# conda environments:
#
tensorflow            *  D:\anaconda\envs\tensorflow
root                     D:\anaconda

激活tensorflow

activate tensorflow

最后用pip安装matplotlib模块:

pip install matplotlib

安装完后即可解决!

 

相关文章:

  • 2021-12-03
  • 2021-07-05
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2021-04-17
  • 2021-11-21
  • 2021-08-13
猜你喜欢
  • 2021-06-11
  • 2021-06-27
  • 2021-08-06
  • 2022-12-23
  • 2021-07-06
  • 2022-12-23
  • 2021-07-10
相关资源
相似解决方案