diff options
| author | Nathan Cain | 2025-05-07 16:41:37 +0200 |
|---|---|---|
| committer | GitHub | 2025-05-07 16:41:37 +0200 |
| commit | 32204095e52c5492f8eabc2821b779564a430d74 (patch) | |
| tree | 1ba7f1d8ac384499ba0ecde7fd0d2e942392e09f /docs/cli.md | |
| parent | 396fb4dde75a10486c538ac173afb8d35c33a868 (diff) | |
Docs update for installing qmk with uv (#24995)
Diffstat (limited to 'docs/cli.md')
| -rw-r--r-- | docs/cli.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/cli.md b/docs/cli.md index 7d4c10cedd..b46180cdde 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -18,6 +18,18 @@ export QMK_HOME='~/qmk_firmware' # Optional, set the location for `qmk_firmware` qmk setup # This will clone `qmk/qmk_firmware` and optionally set up your build environment ``` +### Install Using uv {#install-using-uv} + +If you have installed [uv](https://docs.astral.sh/uv/), the QMK CLI can be installed and managed as a uv tool: + +``` +uv tool install qmk +export QMK_HOME='~/qmk_firmware' # Optional, set the location for `qmk_firmware` +qmk setup # This will clone `qmk/qmk_firmware` and optionally set up your build environment +``` + +This installation can be updated via `uv tool upgrade qmk`. See [Upgrading tools](https://docs.astral.sh/uv/guides/tools/#upgrading-tools) for more information. + ### Install Using pip {#install-using-easy_install-or-pip} If your system is not listed above you can install QMK manually. First ensure that you have Python 3.7 (or later) installed and have installed pip. Then install QMK with this command: |