Skip to content

Instantly share code, notes, and snippets.

@aaronlelevier
Last active September 11, 2019 22:07
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 aaronlelevier/8f50e09dca260e87893e8308275f91d9 to your computer and use it in GitHub Desktop.
Save aaronlelevier/8f50e09dca260e87893e8308275f91d9 to your computer and use it in GitHub Desktop.
Bash commands to set up a local dev environment for Jupyter Notebook
mkdir juptyer-practice
cd juptyer-practice
echo "create virtualenv step"
python3 -m venv venv
echo "activate virtualenv"
source venv/bin/activate
echo "install dependencies"
pip install jupyter notebook
echo "launch jupyter"
jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment