Created
May 31, 2016 19:53
-
-
Save oogali/8b9385fb59cf5c27be91fa307133dad5 to your computer and use it in GitHub Desktop.
OS X + System Python + virtualenv + Jupyter
This file contains hidden or 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
function frameworkpython { | |
if [[ ! -z "$VIRTUAL_ENV" ]]; then | |
PYTHONHOME=$VIRTUAL_ENV /usr/bin/python "$@" | |
else | |
/usr/bin/python "$@" | |
fi | |
} | |
function jupyter { | |
jcmd=$1 | |
shift | |
if [[ ! -z "$VIRTUAL_ENV" ]]; then | |
jupyter_prefix="${VIRTUAL_ENV}/bin/jupyter" | |
else | |
jupyter_prefix="$(which jupyter)" | |
fi | |
if [[ -z "${jupyter_prefix}" ]]; then | |
echo "Could not find Jupyter in your path" | |
exit 1 | |
fi | |
frameworkpython "${jupyter_prefix}-${jcmd}" "$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment