mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-27 05:54:11 +00:00
fix uninstallation command for windows on documentation (#7944)
## Summary Fix uninstall uv command for windows on documentation
This commit is contained in:
parent
ab80bf5f10
commit
561655b51f
1 changed files with 12 additions and 3 deletions
|
@ -210,9 +210,18 @@ Then restart the shell or source the shell config file.
|
|||
|
||||
If you need to remove uv from your system, just remove the `uv` and `uvx` binaries:
|
||||
|
||||
```console
|
||||
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
|
||||
```
|
||||
=== "macOS and Linux"
|
||||
|
||||
```console
|
||||
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
|
||||
```
|
||||
|
||||
=== "Windows"
|
||||
|
||||
```powershell
|
||||
$ rm $HOME\.cargo\bin\uv.exe
|
||||
$ rm $HOME\.cargo\bin\uvx.exe
|
||||
```
|
||||
|
||||
!!! tip
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue