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

fixed gym installation (failed due to packages removal from apt-get repo)

This commit is contained in:
Itai Caspi
2017-10-22 15:05:25 +03:00
parent d976609127
commit 1e47257178

View File

@@ -166,7 +166,7 @@ fi
# Gym
if [ ${INSTALL_GYM} -eq 1 ]; then
echo "Installing Gym support"
sudo -E apt-get install xvfb libav-tools xorg-dev libsdl2-dev swig cmake -y
sudo -E apt-get install libav-tools libsdl2-dev swig cmake -y
pip install box2d # for bipedal walker etc.
pip install gym
fi