diff --git a/start-unix.sh b/start-unix.sh index 9d7b569..2e4ea16 100755 --- a/start-unix.sh +++ b/start-unix.sh @@ -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