代码行:
import matplotlib
错误:
ImportError:没有名为' matplotlib'
的模块
问题:
which python3.4 % /usr/bin/python3.4
matplotlib安装在哪里?
sudo find /usr | grep matplotlib % /usr/lib/pymodules/python2.7/matplotlib/...
一些注意事项:
解决方案:
import sys sys.path.append('/usr/lib/pymodules/python2.7/')
(对此不满意。)
使用pip3 install matplotlib
或sudo pip3 install matplotlib
(收到错误,我也不喜欢这个)。
使用sudo apt-get install python-matplotlib
(可能是完美的,但在python2.7目录中安装matplotlib)。
如何让matplotlib为python3工作? 感谢
答案 0 :(得分:21)
正当我准备提出问题而不是打字
sudo apt-get install python-matplotlib
我需要输入
sudo apt-get install python3-matplotlib