Using zc.buildout, how do I install a tarball from a website?
Posted
by Brad Wright
on Stack Overflow
See other posts from Stack Overflow
or by Brad Wright
Published on 2010-04-03T18:04:16Z
Indexed on
2010/04/03
18:13 UTC
Read the original article
Hit count: 447
I'm trying to get zc.buildout to install Gunicorn from source. Using the following configuration:
[gunicorn]
recipe = collective.recipe.distutils
url = http://github.com/benoitc/gunicorn/tarball/master
results in the following error:
SystemError: ('Failed', '"/usr/bin/python" setup.py -q install --install- purelib="/mnt/hgfs/Projects/intranation/parts/site-packages" --install-platlib="/mnt/hgfs/Projects/intranation/parts/site-packages"')
Providing a --install-dir
or --prefix
doesn't help.
Is there a recipe for zc.buildout that downloads a tarball and installs it via easy_install or similar?
© Stack Overflow or respective owner