Skip to content

Instantly share code, notes, and snippets.

View contracode's full-sized avatar

Jared Contrascere contracode

  • Washington, DC
View GitHub Profile
@contracode
contracode / jupyter-lab.sh
Created June 11, 2018 23:42 — forked from hughdbrown/jupyter-lab.sh
Set up virtualenv and jupyter kernel to run isolated jupyter lab
#!/bin/sh
# Based on:
# http://anbasile.github.io/programming/2017/06/25/jupyter-venv/
mkvirtualenv --python=`which python3` ADRPython
workon ADRPython
pip3 install \
jupyter jupyterlab jupyterthemes \
scipy \