14

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 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

1 Answer 1

26

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
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.