I\'ve tried to install pycairo
in a virtualenv to use in a Django project. I\'ve ran the pip install pycairo==1.10.0
command which finds the packag
Although py2cairo doesn't install nicely using pip, you can still install py2cairo into the virtual environment using the build instructions in the INSTALL file from the distribution.
You will need the cairo-dev/cairo-devel package for you os installed in order to build the package.
Do the following to install into your virtual environment:
./waf configure --prefix=$VIRTUAL_ENV
./waf build
./waf install