From e44567fc4e00d378b9ee07c612d81d67281e06a6 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Mon, 29 Dec 2014 12:33:11 -0500 Subject: [PATCH] Update Dockerfile Latest master removed the `--system` flag. You can pass a `--user` flag for non-system install. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87656478e..d21e67a9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,8 +57,8 @@ RUN pip2 install file:///srv/ipython#egg=ipython[all] RUN pip3 install file:///srv/ipython#egg=ipython[all] # install kernels -RUN python2 -m IPython kernelspec install-self --system -RUN python3 -m IPython kernelspec install-self --system +RUN python2 -m IPython kernelspec install-self +RUN python3 -m IPython kernelspec install-self WORKDIR /tmp/