Skip to content

Instantly share code, notes, and snippets.

@jasongrout
Forked from minrk/develop-all-the-things
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongrout/56129fd4b00fc525b77f to your computer and use it in GitHub Desktop.
Save jasongrout/56129fd4b00fc525b77f 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
ipython/ipywidgets
"
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
python -m ipywidgets.install --enable --user --symlink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment