Install ZEGGS environment
mainTo set up the ZEGGS environment, create a Conda virtual environment with Python 3.8, install PyTorch 1.12.x for CUDA 11.3, and install the remaining dependencies via pip. Note that you may need to install sox on your system.
# Create and activate environment
conda create -n zeggs python=3.8
conda activate zeggs
# Install PyTorch 1.12.x for CUDA 11.3
conda install pytorch torchvision cudatoolkit=11.3 -c pytorch
# Install remaining requirements
pip install -r requirements.txt