1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

removing box2d and atari requirements (#124)

This commit is contained in:
Gal Novik
2018-11-19 13:42:08 +02:00
committed by GitHub
parent 9210909050
commit 3817cefb12
2 changed files with 3 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ FROM coach-base:master as builder
# prep some of the more common environments # prep some of the more common environments
# Gym (installed with coach) # Gym (installed with coach)
Run pip3 install gym[atari] box2d
# Mujoco # Mujoco
RUN mkdir -p ~/.mujoco \ RUN mkdir -p ~/.mujoco \
&& wget https://www.roboti.us/download/mjpro150_linux.zip -O mujoco.zip \ && wget https://www.roboti.us/download/mjpro150_linux.zip -O mujoco.zip \
@@ -28,5 +29,5 @@ COPY --from=builder /root/.cache /root/.cache
COPY setup.py /root/src/. COPY setup.py /root/src/.
COPY requirements.txt /root/src/. COPY requirements.txt /root/src/.
COPY README.md /root/src/. COPY README.md /root/src/.
RUN pip3 install mujoco_py vizdoom && pip3 install -e .[all] && rm -rf /root/.cache RUN pip3 install gym[atari] box2d mujoco_py vizdoom && pip3 install -e .[all] && rm -rf /root/.cache
COPY . /root/src COPY . /root/src

View File

@@ -7,8 +7,7 @@ pygame>=1.9.3
PyOpenGL>=3.1.0 PyOpenGL>=3.1.0
scipy>=0.19.0 scipy>=0.19.0
scikit-image>=0.13.0 scikit-image>=0.13.0
box2d>=2.3.2 gym>=0.10.5
gym[atari]>=0.10.5
bokeh>=0.13.0 bokeh>=0.13.0
futures>=3.1.1 futures>=3.1.1
wxPython>=4.0.1 wxPython>=4.0.1