Created
September 10, 2015 14:12
-
-
Save jbn/2913671f77014544504c to your computer and use it in GitHub Desktop.
Always On Jupyter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installation: | |
# - Put this in your .bash_profile | |
# - Replace my directory with your exobrain directory on line 10 | |
# | |
# What you get: | |
# A Jupyter notebook open on a well-defined port that is always | |
# on for exobrain-ing your ideas... | |
exec 6<>/dev/tcp/localhost/10000 || ( | |
source activate py27 && | |
cd ~/Projects/IdeaHopper && | |
nohup ipython notebook --port 10000 & | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment