Skip to content

Commit 5f24887

Browse files
committed
docs(CHANGES): Add pipx, uv, and uvx installation instructions
- Add pipx with --suffix=@next for pre-release versions - Add uv add for adding to project dependencies - Add uvx for one-time execution from pre-releases - Follow pattern from vcspull project - No specific version numbers mentioned per project convention
1 parent 236f91a commit 5f24887

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

CHANGES

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,31 @@
33
For instructions on installing the development version of libtmux, refer to
44
[development releases](https://libtmux.git-pull.com/quickstart.html#developmental-releases).
55

6-
To install via [pip](https://pip.pypa.io/en/stable/), use:
6+
[pip](https://pip.pypa.io/en/stable/):
77

88
```console
99
$ pip install --user --upgrade --pre libtmux
1010
```
1111

12+
[pipx](https://pypa.github.io/pipx/docs/):
13+
14+
```console
15+
$ pipx install --suffix=@next 'libtmux' --pip-args '\--pre' --force
16+
// Usage: libtmux@next [command]
17+
```
18+
19+
[uv](https://docs.astral.sh/uv/):
20+
21+
```console
22+
$ uv add libtmux --prerelease allow
23+
```
24+
25+
[uvx](https://docs.astral.sh/uv/guides/tools/):
26+
27+
```console
28+
$ uvx --from 'libtmux' --prerelease allow python
29+
```
30+
1231
## libtmux 0.47.x (Yet to be released)
1332

1433
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->

0 commit comments

Comments
 (0)