...Not that I have anything against Cairo -- I love it in fact. It's just terribly difficult to install the Python bindings, especially on a Mac (see all the SO questions about installing pycairo on OS X). Are there better alternatives?

Edit:

For a little more context, I'm creating a web service that I would like to be simple to deploy, ideally using standard installation channels; not being able to simply use pip or easy_install introduces complexity into the deployment process on many deployment platforms. Additionally, I'd like it to be easy for anyone to set up a virtual environment and do development on the application on their local machine. Again, ease of installation is an important point here.

link|improve this question

67% accept rate
7  
...define "better"? By what criteria are you judging? – André Caron Oct 9 '11 at 14:19
2  
@André: Apparently, by ease of installation on a Mac. – Petr Viktorin Oct 9 '11 at 15:44
@AndréCaron good point; I provided a little more context above. – mjumbewu Oct 10 '11 at 20:15
I love cairo for desktop gui apps, but for online stuff I am considering the use of HTML5 Canvas element. Well, just an idea ;o) – heltonbiker Nov 24 '11 at 23:27
feedback

1 Answer

up vote 2 down vote accepted

Kiva, part on Enable (http://github.com/enthought/enable), is a library which abstracts the vector renderer. It supports cairo, Agg, and several other renderers, though Agg is the default. It works on Linux, OS X and Windows.

link|improve this answer
Good tip, I'll check it out. – mjumbewu Oct 10 '11 at 20:54
oops, I forgot, on OS X, the default is the native Quartz renderer. – Bryce Oct 10 '11 at 23:00
yeah, that's not so bad. long as it works the same. – mjumbewu Oct 17 '11 at 4:51
feedback

Your Answer

 
or
required, but never shown

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