From 561655b51f65ebf1eaaf4ad642962a71ab34117b Mon Sep 17 00:00:00 2001 From: Eduardo Mendes Date: Sun, 6 Oct 2024 11:29:17 -0300 Subject: [PATCH] fix uninstallation command for windows on documentation (#7944) ## Summary Fix uninstall uv command for windows on documentation --- docs/getting-started/installation.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index f0dc6851c..eabe5df28 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -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