Go to file
2015-09-23 15:39:55 +01:00
docs Update JavaScript Notebook Extensions.ipynb 2015-09-23 15:39:55 +01:00
git-hooks Update githooks and description 2015-09-16 11:47:53 -07:00
notebook Merge pull request #449 from vext01/unicode_listing_fix 2015-09-23 12:21:32 +02:00
scripts install-nbextension -> nbextension install 2015-06-26 14:28:32 -07:00
tools start workign on typeahead 2015-08-10 17:35:45 -07:00
.bowerrc s/jupyter_notebook/notebook 2015-05-14 10:49:28 -07:00
.gitignore Revert "Use NPM, node ES5, and browserify." 2015-08-27 09:00:15 +02:00
.gitmodules remove submodule 2015-04-21 15:37:09 -07:00
.mailmap fix backward n_pulls, n_issues in github stats 2015-04-03 13:05:18 -07:00
.travis.yml .travis.yml: Test on Python 3.3, as well. 2015-09-10 16:56:40 -04:00
bower.json bump term.js to 0.0.7 2015-09-11 15:08:42 +02: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 ipykernel direct, no tests in container 2015-09-10 15:53:37 -05:00
MANIFEST.in Add missing files to manifest 2015-07-27 14:54:38 -07:00
package.json Revert "Use NPM, node ES5, and browserify." 2015-08-27 09:00:15 +02:00
README.md Merge pull request #169 from Security513/master 2015-09-11 15:46:35 -07:00
setup.cfg package skeleton 2015-04-21 15:37:06 -07:00
setup.py formatting for long_description 2015-09-22 21:25:47 +02:00
setupbase.py shell=True wants a string cmd 2015-09-07 12:12:24 +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

For FreeBSD:

cd /usr/ports/www/npm
sudo make install    # (Be sure to select the "NODE" option)
cd /usr/ports/devel/py-pip
sudo make install
cd /usr/ports/devel/py-virtualenv
sudo make install
cd /usr/ports/shells/bash
sudo make install
mkdir -p ~/.virtualenvs
python2.7 -m virtualenv ~/.virtualenvs/notebook
bash
source ~/.virtualenvs/notebook/bin/activate
pip install --upgrade setuptools pip pycurl
git clone https://github.com/jupyter/notebook.git
cd notebook
pip install -r requirements.txt -e .
jupyter notebook