- Install the
uv
package manager. - Read through
examples.py
, referencingethode.py
to see how things are done. - Use
uv run
to run things, all the package management and the Python version management are taken care of automatically. - ...
- Profit.
- You will need
python3.10
or newer; see if it is installed on your system by executing in a terminalpython3 --version
. - I recommend using pyenv to manage your python versions, or you can just download python here and use a virtual environment to keep stuff separated.
- Install packages
python3 -m pip install -r requirements.txt
. - Read through
examples.py
, referencingethode.py
to see how things are done - ...
- Profit.