vote up 0 vote down star

What is the best way to install the latest version of pyfacebook with buildout? The package is hosted on github and is not on pypi. This system doesn't have git installed, so a git-based recipe isn't unfortunately not an option. The github URL is http://github.com/sciyoshi/pyfacebook. TIA!

flag

1 Answer

vote up 0 vote down check

You can add any python package hosted on git-hub by adding a find-links url pointing to the project tarball URL plus a #egg=packagename postfix. For pyfacebook that is:

http://github.com/sciyoshi/pyfacebook/tarball/master#egg=pyfacebook

So a simple buildout would be:

[buildout]
parts = whatever
find-links =
    http://github.com/sciyoshi/pyfacebook/tarball/master#egg=pyfacebook
eggs = pyfacebook
link|flag
Thanks. This worked great. I moved this to the setup.py in order to not be locked into buildout in the future: dependency_links=['github.com/sciyoshi/pyfacebook/…'], install_requires = ['pyfacebook'], – edgardo Nov 5 at 16:51

Your Answer

Get an OpenID
or

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