Clone this repo (git clone) or download the source to a place you can easily access.
Make sure that you have python v3.11 installed. You can grab the latest version from their website
- Install the
uvpackage manager from here: uv. Follow the instructions for your OS - Test that
uvis installed by runninguv --versionyou should not get an error. - Install the dependencies via
uv sync
Alternatively use pip which comes preinstalled with python. You'll need to create a virtual env first.
- Create the virtual env with
python -m venv .venv - Activate the virtual env run:
.venv\Scripts\activate(on Mac/Linuxsource .venv/bin/activate). You should see your terminal prompt change. - Run
pip install .from the repo's directory.