Go to file
Min RK 666fdf7157 Merge pull request #91 from takluyver/runtime-dir-absent
Fix list_running_servers when runtime dir not created
2015-05-13 16:33:57 -07:00
docs Configure watch/livereload extension and document it. 2015-04-21 18:30:05 -07:00
examples remove widgets 2015-04-22 15:40:58 -07:00
git-hooks
jupyter_notebook Fix list_running_servers when runtime dir not created 2015-05-13 16:02:22 -07:00
scripts
tools/tests
.bowerrc add bower.json from ipython-components 2015-04-21 15:37:09 -07:00
.gitignore add package.json for fetching bower, less 2015-04-21 15:37:09 -07:00
.gitmodules
.mailmap
.travis.yml Merge pull request #40 from minrk/rm-widgets 2015-04-27 11:36:27 -07:00
bower.json add mathjax to components 2015-04-21 15:37:12 -07:00
CONTRIBUTING.md
COPYING.md
Dockerfile
gulpfile.js disable clean-css restructuring 2015-05-08 16:46:09 -07:00
MANIFEST.in add bower.json from ipython-components 2015-04-21 15:37:09 -07:00
package.json Configure watch/livereload extension and document it. 2015-04-21 18:30:05 -07:00
README.md Pip install all-in-one 2015-04-29 18:13:29 -05:00
requirements.txt replace jupyter_nbformat by nbformat 2015-05-08 14:33:07 -07:00
setup.cfg
setup.py replace jupyter_nbformat by nbformat 2015-05-08 14:33:07 -07:00
setupbase.py properly update package_data after components changes 2015-04-22 16:19:13 -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/jupyter_notebook
source ~/.virtualenvs/jupyter_notebook/bin/activate
pip install --upgrade setuptools pip
git clone https://github.com/jupyter/jupyter_notebook.git
cd jupyter_notebook
pip install -r requirements.txt -e .
jupyter notebook