2. Setup Python Environments on GCP - Pommerman/pytorch-pommerman-rl GitHub Wiki

Welcome to the pytorch-pommerman-rl wiki!

Install Anaconda in GCP server

# I use root to install the envs, you could choose your own account to install everything, but I didn't test it
sudo su

wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh
sh Anaconda3-2019.07-Linux-x86_64.sh
# enter yes to confirm the agreements and locations

Clone playground and pytorch-pommerman-rl to the server

git clone https://github.com/Pommerman/playground.git
cd playground/
conda env create -f env.yml
conda activate pommerman

cd ..
git clone https://github.com/Pommerman/pytorch-pommerman-rl.git
# make sure you are still in pommerman env
conda activate pommerman
conda env update --file env.yml  --prune