-
Click thumbnail to watch the video!
Unity 6 (6000.0.27f1) Download
# Create from environment config file
conda env create -f ./conda_env.yaml
conda activate donkey
Alternatively...
conda create -n donkey python=3.10.12 # for mlagents 22 (oct/5/2024)
conda activate donkey
# If using CUDA platform
pip3 install torch~=2.2.1 --index-url https://download.pytorch.org/whl/cu121
# If using AMD ROC platform (only supported in linux)
pip3 install torch~=2.2.1 --index-url https://download.pytorch.org/whl/rocm6.2
# If not using GPU acceleration (CPU only)
pip3 install torch~=2.2.1
python -m pip install mlagents==1.1.0 # If downloading from PyPi, otherwise download it from the ML-Agents gh repo
mlagents-learn --help # verify if it was installed correctly