From affa742b03d440646ce4ecfa873fa49ea36909f9 Mon Sep 17 00:00:00 2001 From: Carl Karsten Date: Mon, 20 Apr 2015 19:50:22 -0500 Subject: [PATCH] Add commands needed for my Ubuntu Trusty box. Tested with docker, which needs 2 more: apt-get update apt-get install sudo git --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index ac7de7f6e..c0213917a 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,15 @@ 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 +``` +