matplotlib won't draw python3

10,063

Solution 1

I ran into exact same issue, but after much efforts I managed to make TkAgg working (which was giving the import error for _tkagg). Little late, but someone might find it useful.

FWIW I resolved the issue as follows (to use TkAgg):

  • Installed tk-dev from package manager
  • Reinstalled python3-tk from package manager
  • Rebuilt and reinstalled matplotlib from source
  • (and of course setting TkAgg in matplotrc)

If you think you have tk-dev and python3-tk installed correctly, you need to rebuild and reinstall matplotlib, so that it generates _tkagg.py in your backends directory.

I'm using Python3.3 (numpy 1.7) on LM14. But I think it should work on Ubuntu/Python3.2

Solution 2

I have been doing source builds of python 3.3.2 and matplotlib. As noted above, TkAgg works. If you are building everything from source:

  1. sudo apt-get install tk-dev
  2. Rebuild python3 (make clean; ./configure; make)
  3. Clean matplotlib (delete egg from virtualenv, remove cache objects from ~/.config/matplotlib)
  4. Rebuilt matplotlib from source (rm -r build/; python setup.py build; python setup.py install)

Finally got to see that silly box pop up wit my x=y line.

hours....

Solution 3

Matplotlib seems to have taken a large step towards Python 3 with their 1.2.x release. matplotlib 1.2.0rc2 (+ numpy 1.7.0b2) is working for me with

  • Python 3.2.2 (virtualenv on a Linux Mint 12)
  • Python 3.3.0 (local installation from source)

In both cases, matplotlib reports "TkAgg" as the backend used.

Unfortunately, I have no clue if/how this might work with Pyramid.

Share:
10,063
Sheena
Author by

Sheena

https://www.africancoding.network/

Updated on June 13, 2022

Comments

  • Sheena
    Sheena almost 2 years

    I installed matplotlib successfully inside a virtualenv. Now I'm trying to get it to draw. I know how to change the backend, but I'm having a whole lot of trouble figuring out what to change it to.

    Has anyone managed to get it totally working with python3? If yes, how?

    I have tried a bunch of things. I have cycled through all the backends to see what all of the complaints are, not I'm trying to get just one of them to work.

    Also possibly worth noting is that my goal is to integrate it into a Pyramid app.

    Here's what has happened so far for all the different backends:

    • Agg: this was the default backend. it does not draw
    • GTK: requires pygtk which apparently has not been ported to python3
    • GTKAgg: ditto
    • GTKCairo: says 'required package gtk' assume something along the lines of above
    • FltkAgg: Doesn't look like it has a python3 version. Even though it is mentioned in the python3 UI FAQ. I guess that was just a rouse. gosh darnit
    • MacOSX: I'm running ubuntu. assumed inappropriate
    • QtAgg: requires pyqt. see Qt4Agg
    • Qt4Agg: see Installing PyQt4 in a virtualenv
    • TkAgg: ImportError: cannot import name _tkagg. I can run import tkinter in the interpreter though, so I'm not really sure what's broken as yet
    • WX: ImportError: Matplotlib backend_wx and backend_wxagg require wxversion, which was not found
    • WXAgg: ditto
    • CocoaAgg: ImportError: The CococaAgg backend required PyObjC to be installed!
    • GTK3Cairo : ImportError: GTK3 backend requires pygobject to be installed. I tried installing it but when I try to configure it with the correct python it complains about missing headers
    • GTK3Agg: no module named cairo. but I assue I'll hit the same issue as above
    • cairo: Cairo backend requires that pycairo is installed
    • emf:You must first install pyemf from http://pyemf.sf.net. Looks like it is supposed to do windowsey stuff so this may not be a good choice
    • gdk: no module called gobject
    • pdf: runs but doesn't draw
    • pgf: ditto
    • ps: ditto
    • svg: ditto
    • template: ditto .

    The script I am using to test my backend is:

    import matplotlib.pyplot as plt
    plt.plot([1,2,3,4])
    plt.show()
    

    So far I have spent waaay too much time trying to get python3.2 and qt4 playing nice, and I just seem to be running into problems every way I turn. So instead of continuing with my trial and error approach I want to ask:

    1. What is the best option for Python3.2 and Pyramid?
    2. How do I make it happen?

    In the meantime I will continue with the trial-and-error thing and update my question as I go.

    NOTES on stuff I'm trying

    For TkAgg:

    since tkinter imports correctly I'm assuming it's installed correctly (if I'm wrong I suppose there's a way to test it?). This guy http://ask.sagemath.org/question/626/sage-python-import-matplotlib-no-module-named had a similar problem but Im sure his setup is different from mine. The solution was to find tkagg.py in the bowels of the python3.2 site packages directory and edit the offending import statement. I find it hard to believe that matplotlib ships broken (and I cant run the modified code suggested...)

    For WX stuff:

    wxPython for Python 3 says there is no support for python3 yet. Also wxPython has no mention of python3 on their site so I guess that's a no-go. running out of options :/

    Cocoa:

    Ditto: Writing Cocoa applications in Python 3

    EMF:

    ditto: http://pyemf.sourceforge.net/README.html