我的Ubuntu 14.04 VM上有两个python编译器。我已将matplotlib
安装为
pip install matplotlib
但matplotlib不能用于python3.它可以在python2.7中使用
如果我在我的脚本import matplotlib.pyplot as plt
中使用test.py
并将其作为
python3 test.py
我收到了错误
ImportError: No module named 'matplotlib'
如何解决这个问题。
答案 0 :(得分:3)
使用pip3
进行安装:
sudo apt-get install python3-pip
sudo pip3 install matplotlib
答案 1 :(得分:1)
您可以使用以下命令从发行版安装软件包:
sudo apt-get install python3-matplotlib
导入matplotlib时可能会抛出错误,但是通过安装包tkinter来解决它:
sudo apt-get install python3-tk