Go to file
Thomas Kluyver 2530a940c9 Merge pull request #2042 from clarka34/patch-2
Update button icon.
2017-01-16 09:37:37 +00:00
docs note changes in 4.0.6 2015-10-09 13:53:40 +02:00
git-hooks
notebook Update button icon. 2017-01-15 23:48:28 -08:00
scripts install-nbextension -> nbextension install 2015-06-26 14:28:32 -07:00
tools remove gulp 2015-07-21 16:34:44 -07:00
.bowerrc s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
.gitignore update .gitignore with swap and map file 2015-06-10 16:07:00 -07:00
.gitmodules remove submodule 2015-04-21 15:37:09 -07:00
.mailmap
.travis.yml remove requirements.txt 2015-07-23 09:31:19 -07:00
bower.json use mathjax component 2015-08-10 16:56:18 -07:00
CONTRIBUTING.md package skeleton 2015-04-21 15:37:06 -07:00
COPYING.md package skeleton 2015-04-21 15:37:06 -07:00
Dockerfile remove requirements.txt 2015-07-23 09:31:19 -07:00
MANIFEST.in Add missing files to manifest 2015-07-27 14:54:38 -07:00
package.json remove gulp 2015-07-21 16:34:44 -07:00
README.md remove requirements.txt 2015-07-23 09:31:19 -07:00
setup.cfg package skeleton 2015-04-21 15:37:06 -07:00
setup.py formatting for long_description 2015-09-22 20:16:06 +02:00
setupbase.py include mathjax extensions that are dynamically loaded 2015-10-09 13:37:08 +02:00

Jupyter Notebook

The Jupyter HTML notebook is a web-based notebook environment for interactive computing.

Dev quickstart:

  • ensure that you have node/npm installed (e.g. brew install node on OS X)
  • Clone this repo and cd into it
  • pip install --pre -e .

NOTE: For Debian/Ubuntu systems, if you're installing the system node you need to use the 'nodejs-legacy' package and not the 'node' package.

Launch with:

jupyter notebook

Example installation (tested on Ubuntu Trusty):

sudo apt-get install nodejs-legacy npm python-virtualenv python-dev
# ensure setuptools/pip are up-to-date
pip install --upgrade setuptools pip
git clone https://github.com/jupyter/notebook.git
cd notebook
pip install --pre -e .
jupyter notebook