Skip to content

Commit

Permalink
Add --upgrade to pip install gym
Browse files Browse the repository at this point in the history
  • Loading branch information
ageron committed Oct 7, 2016
1 parent 5fe21fa commit 25e0c35
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +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
RUN pip install 'gym[atari]'
RUN pip install --upgrade gym
RUN pip install --upgrade '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"
RUN /bin/bash -c "source activate python3 && pip install 'gym[atari]'"
RUN /bin/bash -c "source activate python3 && pip install --upgrade gym"
RUN /bin/bash -c "source activate python3 && pip install --upgrade 'gym[atari]'"

0 comments on commit 25e0c35

Please sign in to comment.