Go to file
Min RK 6bea149869 Merge pull request #109 from Carreau/namual-restart
"Manual restart" is not very descriptive.
2015-05-24 12:02:38 -07:00
docs s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
examples remove widgets 2015-04-22 15:40:58 -07:00
git-hooks
notebook "Manual restart" is not very descriptive. 2015-05-23 20:04:34 -07:00
scripts s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
tools/tests
.bowerrc s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
.gitignore compile main.min.js for each application 2015-05-22 16:01:48 -07:00
.gitmodules remove submodule 2015-04-21 15:37:09 -07:00
.mailmap
.travis.yml s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
bower.json add mathjax to components 2015-04-21 15:37:12 -07:00
build-main.js compile main.min.js for each application 2015-05-22 16:01:48 -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 update Dockerfile 2015-05-20 22:02:38 -07:00
gulpfile.js Clarify dependency-changed message 2015-05-23 14:46:26 -07:00
MANIFEST.in add bower.json from ipython-components 2015-04-21 15:37:09 -07:00
package.json Clarify dependency-changed message 2015-05-23 14:46:26 -07:00
README.md s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
requirements.txt replace jupyter_nbformat by nbformat 2015-05-08 14:33:07 -07:00
setup.cfg package skeleton 2015-04-21 15:37:06 -07:00
setup.py trigger gulp js as distutils step 2015-05-22 16:07:03 -07:00
setupbase.py prevent installation if main.min.js are missing 2015-05-22 16:07:03 -07:00

Jupyter Notebook

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

Dev quickstart:

  • Create a virtual env (ie jupyter-dev)
  • ensure that you have node/npm installed (ie brew install node on OS X)
  • Clone this repo and cd into it
  • pip install -r requirements.txt -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

For Ubuntu Trusty:

sudo apt-get install nodejs-legacy npm python-virtualenv python-dev
python2 -m virtualenv ~/.virtualenvs/notebook
source ~/.virtualenvs/notebook/bin/activate
pip install --upgrade setuptools pip
git clone https://github.com/jupyter/notebook.git
cd notebook
pip install -r requirements.txt -e .
jupyter notebook