Skip to content

Instantly share code, notes, and snippets.

@lmBored
Created November 13, 2025 15:49
Show Gist options
  • Select an option

  • Save lmBored/4b8699706907e8b8ffbdc4c5b0677221 to your computer and use it in GitHub Desktop.

Select an option

Save lmBored/4b8699706907e8b8ffbdc4c5b0677221 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
module purge
module load cuda11.8/toolkit/11.8.0
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda3
rm ~/miniconda.sh
source ~/miniconda3/etc/profile.d/conda.sh
conda create -n "vizdoom" python="$3.11" pip -y
conda activate "$vizdoom"
pip install --upgrade pip
pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
pip install --no-cache-dir torchrl vizdoom pettingzoo opencv-python 'wandb[media]' tensorboard pyyaml cmake
pip install --no-cache-dir git+https://github.com/facebookresearch/BenchMARL.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment