update uninstall docs to mention uvw[.exe] needs to be removed (#15536)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

Update to the docs

## Test Plan

CI
This commit is contained in:
pythonweb2 2025-08-26 10:22:38 -06:00 committed by GitHub
parent b2c8f5ef68
commit 2ca8f6d250
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -254,7 +254,7 @@ If you need to remove uv from your system, follow these steps:
Before removing the binaries, you may want to remove any data that uv has stored.
2. Remove the uv and uvx binaries:
2. Remove the uv, uvx, and uvw binaries:
=== "macOS and Linux"
@ -267,6 +267,7 @@ If you need to remove uv from your system, follow these steps:
```pwsh-session
PS> rm $HOME\.local\bin\uv.exe
PS> rm $HOME\.local\bin\uvx.exe
PS> rm $HOME\.local\bin\uvw.exe
```
!!! note