Problems #
Tips #
- http://stackoverflow.com/questions/19479645/using-ipython-console-along-side-ipython-notebook -
%qtconsole
- Running a notebook server
- Easily distributing a parallel IPython Notebook on a cluster
- Remote Access to IPython Notebooks via SSH
On a remote machine:
remote_user@remote_host$ jupyter notebook --no-browser --port=8889
then connect like this (remove -f
option to prevent it to run in the background):
local_user@local_host$ ssh -N -f -L localhost:8888:localhost:8889 remote_user@remote_host
Open a browser:
localhost:8888
Type the following to reload modules whenever you execute code.
%load_ext autoreload
%autoreload 2 # Reload all modules (except those excluded by %aimport) every time
Examples #
-
https://github.com/ipython/ipython/wiki/A-gallery-of-interesting-IPython-Notebooks
- http://nbviewer.ipython.org/urls/raw.github.com/agconti/kaggle-titanic/master/Titanic.ipynb
- Datalicious Notebookmania – My favorite 7 IPython Notebooks
- I400/590 : Large-Scale Social Phenomena - Data Mining Demo by Artemy Kolchinsky
- [https://github.com/ipython/nbconvert-examples nbconvert example]
Incoming Links #
Related Articles (Article 0) #
Suggested Pages #
- 0.168 Machine learning
- 0.128 Travelling salesman problem
- 0.119 Probability, Paradox, and the Reasonable Person Principle
- 0.095 SSH tunneling
- 0.085 Poker
- 0.055 SSH
- 0.040 Data science
- 0.034 Python
- 0.030 Paradox
- 0.028 SSH config
- More suggestions...