The code line:
import matplotlib
The error:
ImportError: No module named 'matplotlib'
The problem:
which python3.4 % /usr/bin/python3.4
Where is matplotlib installed?
sudo find /usr | grep matplotlib % /usr/lib/pymodules/python2.7/matplotlib/...
Some considerations:
- OS: Linux Mint 17.2
- I need to use Python 3.4
Solutions:
import sys sys.path.append('/usr/lib/pymodules/python2.7/')
(Not happy with this one).Using
pip3 install matplotlib
orsudo pip3 install matplotlib
(Recieving errors, and i dont like this one too).Using
sudo apt-get install python-matplotlib
(May be the perfect one, but installs matplotlib in python2.7 directory).
How can i make matplotlib work for python3? Thanks
See Question&Answers more detail:os