mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-28 06:24: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:
|
If you need to remove uv from your system, just remove the `uv` and `uvx` binaries:
|
||||||
|
|
||||||
```console
|
=== "macOS and Linux"
|
||||||
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
|
|
||||||
```
|
```console
|
||||||
|
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
|
||||||
|
```
|
||||||
|
|
||||||
|
=== "Windows"
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
$ rm $HOME\.cargo\bin\uv.exe
|
||||||
|
$ rm $HOME\.cargo\bin\uvx.exe
|
||||||
|
```
|
||||||
|
|
||||||
!!! tip
|
!!! tip
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue