Skip to content

Commit ee8e33c

Browse files
committed
docs(quickstart) Add pipx, uv, and uvx installation options
Expand developmental releases section to include pipx, uv, and uvx installation methods alongside pip. Also add trunk installation options for pipx and uv. Commands do not reference specific prerelease versions, following the pattern used in vcspull.
1 parent e8dc086 commit ee8e33c

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

docs/quickstart.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,24 @@ In their versions you will see notification like `a1`, `b1`, and `rc1`, respecti
3030
$ pip install --user --upgrade --pre gp-libs
3131
```
3232

33+
- [pipx]\:
34+
35+
```console
36+
$ pipx install --suffix=@next 'gp-libs' --pip-args '\--pre' --force
37+
```
38+
39+
- [uv]\:
40+
41+
```console
42+
$ uv add gp-libs --prerelease allow
43+
```
44+
45+
- [uvx]\:
46+
47+
```console
48+
$ uvx --from 'gp-libs' --prerelease allow gp-libs
49+
```
50+
3351
via trunk (can break easily):
3452

3553
- [pip]\:
@@ -38,4 +56,19 @@ via trunk (can break easily):
3856
$ pip install --user -e git+https://github.com/git-pull/gp-libs.git#egg=gp-libs
3957
```
4058

59+
- [pipx]\:
60+
61+
```console
62+
$ pipx install --suffix=@master 'gp-libs @ git+https://github.com/git-pull/gp-libs.git@master' --force
63+
```
64+
65+
- [uv]\:
66+
67+
```console
68+
$ uv add gp-libs --from git+https://github.com/git-pull/gp-libs.git
69+
```
70+
4171
[pip]: https://pip.pypa.io/en/stable/
72+
[pipx]: https://pypa.github.io/pipx/docs/
73+
[uv]: https://docs.astral.sh/uv/
74+
[uvx]: https://docs.astral.sh/uv/guides/tools/

0 commit comments

Comments
 (0)