Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
support both jupyter and ipython notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
T-recks committed Oct 24, 2017
1 parent 28799e1 commit 837be2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions start-unix.sh
Expand Up @@ -4,12 +4,12 @@ cd "$(dirname "$0")"

source activate py34
if [[ $? == 0 ]]; then
jupyter-notebook
jupyter-notebook || ipython-notebook --matplotlib=inline
else
which ipython3
if [[ $? == 0 ]]; then
jupyter-notebook
jupyter-notebook || ipython-notebook --matplotlib=inline
else
jupyter-notebook
jupyter-notebook || ipython-notebook --matplotlib=inline
fi
fi

0 comments on commit 837be2c

Please sign in to comment.