Skip to content

Instantly share code, notes, and snippets.

@donigian
Created March 25, 2016 14:50
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 donigian/9fb7fb2265df82dd0e7f to your computer and use it in GitHub Desktop.
Save donigian/9fb7fb2265df82dd0e7f to your computer and use it in GitHub Desktop.
Install Jupyter IPython Notebooks for Python 2 and 3
configure the python2.7 environment:
conda create -n py27 python=2.7
source activate py27
conda install notebook ipykernel
ipython kernel install
configure the python3.5 environment:
conda create -n py35 python=3.5
source activate py35
conda install notebook ipykernel
ipython kernel install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment