fix uninstallation command for windows on documentation (#7944)

## Summary

Fix uninstall uv command for windows on documentation
This commit is contained in:
Eduardo Mendes 2024-10-06 11:29:17 -03:00 committed by GitHub
parent ab80bf5f10
commit 561655b51f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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