From 5608a9c8e4ff391603a2857092ccbd2d438fc40e Mon Sep 17 00:00:00 2001 From: Graham Taylor Date: Sat, 12 Sep 2015 14:56:20 -0400 Subject: [PATCH] Fix No module named jupyter_client.kernelspecapp error When Python 2 conda environment is created, it pulls the most recent IPython (currently 4.0.0) The project seems to be in flux right now between IPython/Jupyter and referring to the old way of registering the Python 2 kernel generates an error and prevents the build. Explicitly installing IPython 3 at least makes the image able to build. --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index d33d613..e41b883 100755 --- a/src/install.sh +++ b/src/install.sh @@ -26,7 +26,7 @@ export PATH=\"$PY3PATH:\$PATH\"" >> $BASH_RC $CONDA3 install --yes seaborn # python 2 environment -$CONDA3 create --yes -n python2 python=2 pip ipython pyzmq +$CONDA3 create --yes -n python2 python=2 pip ipython=3.2.1 pyzmq # ipython setup $PY3PATH/ipython profile create default --ipython-dir $HOME/.ipython