mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Use XDG (i.e. ~/.local/bin
) instead of the Cargo home directory in the installer (#8420)
Reviving https://github.com/astral-sh/uv/pull/2236 Basically implements https://github.com/axodotdev/cargo-dist/issues/287
This commit is contained in:
parent
8034de7295
commit
383d4e774b
3 changed files with 9 additions and 6 deletions
|
@ -185,14 +185,14 @@ If you need to remove uv from your system, just remove the `uv` and `uvx` binari
|
|||
=== "macOS and Linux"
|
||||
|
||||
```console
|
||||
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
|
||||
$ rm ~/.local/bin/uv ~/.local/bin/uvx
|
||||
```
|
||||
|
||||
=== "Windows"
|
||||
|
||||
```powershell
|
||||
$ rm $HOME\.cargo\bin\uv.exe
|
||||
$ rm $HOME\.cargo\bin\uvx.exe
|
||||
$ rm $HOME\.local\bin\uv.exe
|
||||
$ rm $HOME\.local\bin\uvx.exe
|
||||
```
|
||||
|
||||
!!! tip
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue