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:
Solutions:
import sys sys.path.append('/usr/lib/pymodules/python2.7/')
(Not happy with this one).
Using pip3 install matplotlib
or sudo 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
Just when i was about to make the question realized that instead of typing
sudo apt-get install python-matplotlib
I needed to type
sudo apt-get install python3-matplotlib
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With