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.155 Probability, Paradox, and the Reasonable Person Principle
- 0.123 Machine learning
- 0.105 Travelling salesman problem
- 0.105 Poker
- 0.101 SSH tunneling
- 0.068 SSH
- 0.054 Data science
- 0.040 Paradox
- 0.034 Probability
- 0.025 SSH config
- More suggestions...