Created
May 11, 2015 20:09
-
-
Save minrk/f8dd024a8a8acb68d238 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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
👍