Skip to content

Commit 561655b

Browse files
authored
fix uninstallation command for windows on documentation (#7944)
## Summary Fix uninstall uv command for windows on documentation
1 parent ab80bf5 commit 561655b

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

docs/getting-started/installation.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,18 @@ Then restart the shell or source the shell config file.
210210

211211
If you need to remove uv from your system, just remove the `uv` and `uvx` binaries:
212212

213-
```console
214-
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
215-
```
213+
=== "macOS and Linux"
214+
215+
```console
216+
$ rm ~/.cargo/bin/uv ~/.cargo/bin/uvx
217+
```
218+
219+
=== "Windows"
220+
221+
```powershell
222+
$ rm $HOME\.cargo\bin\uv.exe
223+
$ rm $HOME\.cargo\bin\uvx.exe
224+
```
216225

217226
!!! tip
218227

0 commit comments

Comments
 (0)