系统相关
首页 > 系统相关> > linux – ImportError:没有安装了matplotlib的名为matplotlib的模块

linux – ImportError:没有安装了matplotlib的名为matplotlib的模块

作者:互联网

代码行:

import matplotlib

错误:

ImportError: No module named ‘matplotlib’

问题:

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

matplotlib安装在哪里?

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

一些考虑:

> OS:Linux Mint 17.2
>我需要使用Python 3.4

解决方案:

> import sys sys.path.append(‘/usr/lib / pymodules / python2.7 /’)(对此不满意).
>使用pip3安装matplotlib或sudo pip3安装matplotlib(收到错误,我也不喜欢这个).
>使用sudo apt-get install python-matplotlib(可能是完美的,但在python2.7目录中安装matplotlib).

我怎样才能让matplotlib为python3工作?
谢谢

解决方法:

就在我准备提出问题时,而不是打字

sudo apt-get install python-matplotlib

我需要打字

sudo apt-get install python3-matplotlib

标签:python-3-4,linux,matplotlib
来源: https://codeday.me/bug/20191001/1839949.html