- Python 3
- Ensure that you have Python 3 with
python --version
- Create a virtual environment with
python -m venv venv
- Activate the virtual environment:
- Linux/MacOS:
. venv/bin/activate
- Windows:
. venv/Scripts/activate
- Linux/MacOS:
- Install requirements:
- If you're on MacOS:
pip install -r requirements/macos.txt
- If you have a CUDA compatible GPU:
pip install -r requirements/cuda.txt
- If not:
pip install -r requirements/cpu.txt
- If you're on MacOS: