Skip to content

Commit

Permalink
Updated the start script (bash) once I discovered that I was calling …
Browse files Browse the repository at this point in the history
…Jupyter incorrectly
  • Loading branch information
Tom Malone committed Oct 25, 2015
1 parent c283742 commit 260cdad
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions start_calculus2_nb.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# This is just a simple shell script intended to save repetitious typing of the same commands daily.
# All it does is start the Jupyter Notebook server for the this course's notbooks.

# Configure profile to use (hard-coded temporarily)
MY_PROFILE='mac2312_calculusII'
# Uncomment to use a different config file (since Jupyter doesn't)
# support profile switching like iPython did.
# Default profile is here: ~/.jupyter/jupyter_notebook_config.py
# NOTE: if you uncomment this, comment out the launcher line below,
# because this command launches Jupyter
#JUPYTER_CONFIG_DIR=./jupyter_config jupyter notebook

# Navigate to the Calculus II course Jupyter Notebook directory
# TODO: move this directory under the course's primary directory - i.e. ~/Documents/College/....
# cd ${HOME}/Projects/Python/iPython_Jupyter_Notebooks/Courses/Calculus_II_MAC2312/

# Start iPython Notebook server
#ipython notebook --profile=$MY_PROFILE

# Start Jupyter Notebook server
ipython notebook --profile=$MY_PROFILE
jupyter notebook

0 comments on commit 260cdad

Please sign in to comment.