Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need your help about matplotlib. Yes, I did not forget calling the pyplot.show().

$ ipython --pylab

import matplotlib.pyplot as p 
p.plot(range(20), range(20))

It returns matplotlib.lines.Line2D at 0xade2b2c as the output.

p.show()

There is nothing to happen. No error message. No new window. Nothing. I install matplotlib by using pip and I didn't take any error messages.

Details:

I use,

  • Ubuntu
  • IPython v0.11
  • Python v2.6.6
  • matplotlib v1.0.1
share|improve this question

3 Answers

up vote 28 down vote accepted

If I set my backend to template in ~/.matplotlib/matplotlibrc, then I can reproduce your symptoms:

~/.matplotlib/matplotlibrc:

# backend      : GtkAgg
backend      : template

Note that the file matplotlibrc may not be in directory ~/.matplotlib/. In this case, the following code shows where it is:

>>> import matplotlib
>>> matplotlib.matplotlib_fname()

% ipython --pylab
Python 2.6.4 (r264:75706, Dec  7 2009, 18:45:15) 
...
In [1]: import matplotlib.pyplot as p

In [2]: p.plot(range(20),range(20))
Out[2]: [<matplotlib.lines.Line2D object at 0xa64932c>]

In [3]: p.show()

If you edit ~/.matplotlib/matplotlibrc and change the backend to something like GtkAgg, you should see a plot. You can list all the backends available on your machine with

import matplotlib.rcsetup as rcsetup
print(rcsetup.all_backends)

It should return a list like:

['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'MacOSX', 'QtAgg', 'Qt4Agg',
'TkAgg', 'WX', 'WXAgg', 'CocoaAgg', 'agg', 'cairo', 'emf', 'gdk', 'pdf',
'ps', 'svg', 'template']

Reference:

share|improve this answer
I have not any rc file. Interesting. I search default rc file in web... – Thorn Sep 30 '11 at 18:11
1  
I tried but I got an error something like: ImportError: No module named _backend_gdk – Thorn Sep 30 '11 at 18:15
4  
Sorry for lots of comment. It works. I tried Qt4Agg and hit. Thanks :).. Last thing, where can I find default matplotlibrc or is there any way to create it? – Thorn Sep 30 '11 at 18:17
Sorry for untidiness. I think I found – Thorn Sep 30 '11 at 18:26
More information on matplotlibrc is at matplotlib.sourceforge.net/users/customizing.html – Jim Garrison Aug 30 '12 at 8:12

I ran into the exact same problem on Ubuntu 12.04, because I installed matplotlib (within a virtualenv) using

pip install matplotlib

To make long story short, my advice is: don't try to install matplotlib using pip or by hand; let a real package manager (e.g. apt-get / synaptic) install it and all its dependencies for you.

Unfortunately, matplotlib's backends (alternative methods for actually rendering your plots) have all sorts of dependencies that pip will not deal with. Even worse, it fails silently; that is, pip install matplotlib appears to install matplotlib successfully. But when you try to use it (e.g. pyplot.show()), no plot window will appear. I tried all the different backends that people on the web suggest (Qt4Agg, GTK, etc.), and they all failed (i.e. when I tried to import matplotlib.pyplot, I get ImportError because it's trying to import some dependency that's missing). I then researched how to install those dependencies, but it just made me want to give up using pip (within virtualenv) as a viable installation solution for any package that has non-Python package dependencies.

The whole experience sent me crawling back to apt-get / synaptic (i.e. the Ubuntu package manager) to install software like matplotlib. That worked perfectly. Of course, that means you can only install into your system directories, no virtualenv goodness, and you are stuck with the versions that Ubuntu distributes, which may be way behind the current version...

share|improve this answer
Your answer is a BIT long, you might consider shortening for the OP. – theJollySin Dec 21 '12 at 0:24
Have you tried the --system-site-packages option? – Tianyang Li Jan 14 at 14:19
%Christopher Lee The problem with figures not showing without any error/other complaint is because the default backend when you pip install is agg. I'm not sure why, but you can change it as per the unutbu's answer. pip has the major advantage of installing an up-to-date version - apt installs an outdated version. Sometimes there are bug fixes/new features that you want/need. – drevicko Feb 25 at 22:34

For future reference,

I have encountered the same problem -- pylab was not showing under ipython. The problem was fixed by changing ipython's config file {ipython_config.py}. In the config file

c.InteractiveShellApp.pylab = 'auto'

I changed 'auto' to 'qt' and now I see graphs

share|improve this answer
or using "ipython --pylab=qt" – andrew cooke Nov 30 '12 at 13:44
This will work, but it's only a partial solution: If your default backend is agg, I don't thing that %pylab inline will work, nor will plots show when you run scripts directly ie:python myscript.py. unutbu's answer should fix it everywhere. – drevicko Feb 25 at 22:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.