Skip to content

Instantly share code, notes, and snippets.

@Raviyanto
Created January 18, 2013 05:25
Show Gist options
  • Save Raviyanto/4562546 to your computer and use it in GitHub Desktop.
Save Raviyanto/4562546 to your computer and use it in GitHub Desktop.
Instalasi IPython Notebook di Ubuntu 12.10.
mkdir notebook
virtualenv ~/notebook
source ~/notebook/bin/activate
sudo apt-get install python-software-properties
sudo apt-get install python-dev
sudo apt-get install libzmq1
sudo apt-get install libzmq-dev
sudo apt-get install libpgm-5.1-0
pip install pyzmq
pip install tornado
pip install --upgrade ipython
pip install numpy
ipython profile create nbserver
ipython notebook --no-browser
[NotebookApp] Using existing profile dir: u'/home/raviyanto/.config/ipython/profile_default'
[NotebookApp] Serving notebooks from /home/raviyanto/.config/ipython/profile_nbserver
[NotebookApp] The IPython Notebook is running at: http://127.0.0.1:8888/
[NotebookApp] Use Control-C to stop this server and shut down all kernels.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment