Skip to content

Instantly share code, notes, and snippets.

@daweeed
Last active August 29, 2015 14:19
Show Gist options
  • Save daweeed/7bf67f5f57d53bb0e258 to your computer and use it in GitHub Desktop.
Save daweeed/7bf67f5f57d53bb0e258 to your computer and use it in GitHub Desktop.
Installling (or updating) Poppy libraries from github repos using PIP
#! /bin/bash
# It will install all libs in ~/dev/
# from github repositories
# using pip install git & svn
# Uninstall lib if you want to update
pip uninstall pypot poppy_humanoid poppy-ergo
# Install pypot
pip install -e git+https://github.com/poppy-project/pypot.git#egg=pypot --src=/home/$USER/dev/
# If SVN not install you'll need it
# sudo apt-get install subversion
# Install poppy_Humanoid
pip install -e svn+https://github.com/poppy-project/poppy-humanoid/trunk/software#egg=poppy_humanoid --src=/home/$USER/dev/
# Install poppy-ergo
pip install -e svn+https://github.com/pierre-rouanet/poppy-ergo/trunk/software#egg=poppy-ergo --src=/home/$USER/dev/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment