Skip to content

Commit

Permalink
add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Mar 5, 2018
1 parent c85e265 commit 82fa16f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Set up instructions

## Installing Jupyter using Anaconda and conda (new users)

The workshop tutorials are provided as Jupyter Notebooks, which are executable documents containing both code and documentation. To use these tutorials you will first need to install Jupyter. The following instructions are taken from the [Jupyter website](http:https://jupyter.readthedocs.io/en/latest/install.html).

For new users of Jupyter, we recommend installing Anaconda. Anaconda conveniently installs Python, the Jupyter Notebook, and other commonly used packages for scientific computing and data science.

Use the following installation steps:

1. Download Anaconda. We recommend downloading Anaconda’s latest Python 3 version (currently Python 3.5).

2. Install the version of Anaconda which you downloaded, following the instructions on the download page.

Congratulations, you have installed Jupyter Notebook. To run the notebook:

`jupyter notebook`

## Installing Jupyter with pip (experienced users)

As an existing Python user, you may wish to install Jupyter using Python’s package manager, pip, instead of Anaconda.

First, ensure that you have the latest pip; older versions may have trouble with some dependencies:

`pip3 install --upgrade pip`

Then install the Jupyter Notebook using:

`pip3 install jupyter`

NB: (Use `pip` if using Python 2.)

0 comments on commit 82fa16f

Please sign in to comment.