-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the start script (bash) once I discovered that I was calling …
…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.
There are no files selected for viewing
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
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 | ||
|