Skip to content

Instantly share code, notes, and snippets.

@minrk
Created July 11, 2015 17:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minrk/bfb057fa22eef1e7a1d4 to your computer and use it in GitHub Desktop.
Save minrk/bfb057fa22eef1e7a1d4 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
gh="https://github.com/"
repos="
ipython/traitlets
ipython/ipython
jupyter/jupyter_core
jupyter/jupyter_client
ipython/ipykernel
ipython/ipyparallel
jupyter/jupyter_console
jupyter/qtconsole
jupyter/nbformat
jupyter/nbconvert
jupyter/notebook
"
test -d ipython || mkdir ipython
test -d jupyter || mkdir jupyter
base=$PWD
for repo in $repos; do
cd $base
test -d $repo || git clone $gh/$repo $repo
cd $repo
git pull
pip install -e .
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment