From 5b3284b0e347fe3dad9c1b7f7b3860386b36c6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Thu, 6 Oct 2016 22:59:35 +0200 Subject: [PATCH] Fix gym[atari] --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c9bc6b1..bfb0333 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,10 @@ RUN conda install -c jjhelmus tensorflow=0.10.0 RUN conda install -c conda-forge jupyter_contrib_nbextensions RUN jupyter contrib nbextension install --user RUN jupyter nbextension enable toc2/main -RUN pip install gym gym[atari] +RUN pip install gym +RUN pip install 'gym[atari]' # Python 3 RUN conda install -n python3 -c jjhelmus tensorflow=0.10.0 -RUN /bin/bash -c "source activate python3 && pip install gym gym[atari]" +RUN /bin/bash -c "source activate python3 && pip install gym" +RUN /bin/bash -c "source activate python3 && pip install 'gym[atari]'"