diff --git a/agentenv-webshop/setup.sh b/agentenv-webshop/setup.sh index 90539eb..2b8e7d2 100644 --- a/agentenv-webshop/setup.sh +++ b/agentenv-webshop/setup.sh @@ -9,7 +9,4 @@ cd .. pip install -U python-Levenshtein pip install -r requirements.txt -pip install -e . - -pip uninstall numpy -y -pip install numpy -y +pip install -e . \ No newline at end of file diff --git a/agentenv-webshop/webshop/setup.sh b/agentenv-webshop/webshop/setup.sh index a18db93..4ae3d9d 100644 --- a/agentenv-webshop/webshop/setup.sh +++ b/agentenv-webshop/webshop/setup.sh @@ -22,11 +22,15 @@ if [ -z "$data" ]; then fi # Install Python Dependencies -pip install -r requirements.txt; +pip install -r requirements.txt # Install Environment Dependencies via `conda` -conda install -c pytorch faiss-cpu; -conda install -c conda-forge openjdk=11; +conda install -y -c pytorch faiss-cpu=1.7.0 +conda install -y -c conda-forge openjdk=11 + +pip uninstall -y typing_extensions +pip install typing_extensions==4.4.0 + # Download dataset into `data` folder via `gdown` command # mkdir -p data; @@ -70,4 +74,4 @@ cd user_session_logs/ echo "Downloading 50 example human trajectories..." # get_human_trajs echo "Downloading example trajectories complete" -cd .. \ No newline at end of file +cd ..