I spent hours this afternoon trying to find a straightforward tutorial for installing PyCairo on Windows.

The Cairo project itself does not maintain Windows binaries, they must be dowloaded elsehere (e.g. http://ftp.gnome.org/pub/GNOME/binaries/win32/pycairo/).

The process is also complicated further apparently by the fact that MSVC is apparently not a supported compiler for PyCairo (although the source patch is simple). See this bug report:

https://www.libreoffice.org/bugzilla/show_bug.cgi?id=22940

Can anyone recommend a tutorial for installing PyCairo on Windows?

link|improve this question
I'm a new user (I joined SO simply to ask AND answer this question). Apparently, this means I can't answer my own questions for 8 hours. I guess I'll be back then :( – Claynoik Jan 2 at 19:10
Further more, I was limited to 2 hyperlinks, so have redacted accordingly - again... only temporarily :( – Claynoik Jan 2 at 19:15
the hyperlink you give points to repositories with old pycairo versions. There are neither version for python 3.x. See my answer for updated installers for python 2.x and 3.x – joaquin Jan 2 at 21:08
Thanks joaquin, that's perfect. I've removed my answer from the question, as planned. – Claynoik Jan 3 at 9:34
feedback

3 Answers

up vote 1 down vote accepted

You should try windows binary installers from Gohlke repository for pyCairo and py2Cairo.

I never used pyCairo myself but took 4 minutes to install and get my first png example file done.

link|improve this answer
feedback

Adding the following for completeness - joaquin's answer above provides a simpler route (and Python 3 support).


Please see the following tutorial:

http://www.cs.rhul.ac.uk/home/tamas/development/igraph/tutorial/install.html

(also hosted at http://hal.elte.hu/~nepusz/development/igraph/tutorial/install.html).

I asked the question above, so that I could answer it myself. Hopefully people in a similar situation in future will find this post :)

While Googling "pycairo install windows" does give the above link, it is presented below some rather unhelpful pages, and it's also not particularly obvious that igraph documentation will be applicable.

Eventually I got as far as installing PyCairo (from the GNOME link in the question), without Cairo itself. This gave me a DLL import error when I tried to use it. Fortunately, a question relating to this error exists on StackOverflow:

pycairo "ImportError: DLL load failed: The specified module could not be found." even after DLLs installed

This question discusses the excellent tutorial from Tamas, linked above, which is all I needed to get up and running.

link|improve this answer
feedback

I believe I have installed a copy using the pygtk all-in-one installer and I believe it did Just Work (32b, python2, mind you). They also mention the gnome URL in your post.

link|improve this answer
Good to know. The question discusses installing just PyCairo. However, having done this and used it for a few days, I'd probably recommend installing the full PyGTK suite as you mention. Being able to render your work to a window during dev, even if your ultimate target is rendering to file, is really helpful and speeds things up! – Claynoik Jan 12 at 10:56
feedback

Your Answer

 
or
required, but never shown

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