一尘不染

ImportError:未安装带有matplotlib的名为matplotlib的模块

linux

代码行:

import matplotlib

错误:

ImportError:没有名为“ matplotlib”的模块

问题:

which python3.4    % /usr/bin/python3.4

matplotlib在哪里安装?

sudo find /usr | grep matplotlib  % /usr/lib/pymodules/python2.7/matplotlib/...

一些注意事项:

  • 操作系统:Linux Mint 17.2
  • 我需要使用Python 3.4

解决方案:

  • import sys sys.path.append('/usr/lib/pymodules/python2.7/') (对此不满意)。

  • 使用pip3 install matplotlibsudo pip3 install matplotlib(接收错误,我也不喜欢这一点)。

  • 使用sudo apt-get install python-matplotlib(可能是完美的选择,但在python2.7目录中安装了matplotlib)。

我如何使Matplotlib适用于python3?谢谢


阅读 275

收藏
2020-06-07

共1个答案

一尘不染

就在我要提出这个问题的时候意识到

sudo apt-get install python-matplotlib

我需要输入

sudo apt-get install python3-matplotlib
2020-06-07