mirror of
https://github.com/gryf/coach.git
synced 2025-12-18 03:30:19 +01:00
removing box2d and atari requirements (#124)
This commit is contained in:
@@ -2,6 +2,7 @@ FROM coach-base:master as builder
|
||||
|
||||
# prep some of the more common environments
|
||||
# Gym (installed with coach)
|
||||
Run pip3 install gym[atari] box2d
|
||||
# Mujoco
|
||||
RUN mkdir -p ~/.mujoco \
|
||||
&& 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 requirements.txt /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
|
||||
|
||||
Reference in New Issue
Block a user