Package in pypi not installed on pip

Why can not I use

$ sudo pip install facebook-python-sdk 

even with facebook-python-sdk package in pypi ?

log: http://dpaste.com/hold/589044/

+4
source share
1 answer

Not sure what is going on there, but you can use pip to install from the github repository:

 pip install git+https://github.com/facebook/python-sdk.git\#egg=facebook-python-sdk 

I usually use pip install -e , which makes pip symlink a package for you, so you can edit the repo, update it, etc., and get the latest changes without having to install the package again.

+3
source

All Articles