-
Notifications
You must be signed in to change notification settings - Fork 0
Adding a library
Eric Apgar edited this page Feb 8, 2026
·
4 revisions
uv add "template @ git+https://github.com/EricApgar/template.git>" --tag <release tag>
or
uv add git+https://github.com/EricApgar/template.git>@<release tag>
or
uv add git+https://github.com/EricApgar/template.git> --tag <release tag>
uv add "template[option_1] @ git+https://github.com/EricApgar/template.git>" --tag <release tag>
uv add "template[option_1, option_2] @ git+https://github.com/EricApgar/template.git>" --tag <release tag>
pip install "template @ git+https://github.com/EricApgar/template.git>@<release tag>"
or
pip install git+https://github.com/EricApgar/template.git>@<release tag>
pip install "template[option_1] @ git+https://github.com/EricApgar/template.git>@<release tag>"
pip install "template[option_1, option_2] @ git+https://github.com/EricApgar/template.git>@<release tag>"
uv sync
uv sync --extra option_1
uv sync --extra option_1 --extra option_2
pip install -r requirements.txt
pip install -e ".[option_1]"
pip install -e ".[option_1, option_2]"