improve fix for setup.sh

This commit is contained in:
Matthias 2023-02-01 09:20:40 +00:00
parent 839215c437
commit 322d4b5351
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ function updateenv() {
source .env/bin/activate
SYS_ARCH=$(uname -m)
echo "pip install in-progress. Please wait..."
${PYTHON} -m pip install --upgrade pip
# Setuptools 65.5.0 is the last version that can install gym==0.21.0
${PYTHON} -m pip install --upgrade pip wheel setuptools==65.5.0
read -p "Do you want to install dependencies for dev [y/N]? "
dev=$REPLY
if [[ $REPLY =~ ^[Yy]$ ]]