代码行:
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/') (对此不满意)。
import sys sys.path.append('/usr/lib/pymodules/python2.7/')
使用pip3 install matplotlib或sudo pip3 install matplotlib(接收错误,我也不喜欢这一点)。
pip3 install matplotlib
sudo pip3 install matplotlib
使用sudo apt-get install python-matplotlib(可能是完美的选择,但在python2.7目录中安装了matplotlib)。
sudo apt-get install python-matplotlib
我如何使Matplotlib适用于python3?谢谢
就在我要提出这个问题的时候意识到
我需要输入
sudo apt-get install python3-matplotlib