Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uv toolchain uninstall repeats "No installations" message #4813

Closed
charliermarsh opened this issue Jul 4, 2024 · 2 comments · Fixed by #4882
Closed

uv toolchain uninstall repeats "No installations" message #4813

charliermarsh opened this issue Jul 4, 2024 · 2 comments · Fixed by #4882
Labels
cli Related to the command line interface preview Experimental behavior

Comments

@charliermarsh
Copy link
Member

charliermarsh commented Jul 4, 2024

Can we omit this in most cases? All cases?

❯ cargo run -- python uninstall 3.12
   Compiling uv v0.2.21 (/Users/crmarsh/workspace/uv/crates/uv)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 4.20s
     Running `target/debug/uv python uninstall 3.12`
warning: `uv python uninstall` is experimental and may change without warning.
Looking for Python installations matching Python 3.12 (any-3.12-any-any-any)
No installations found matching Python 3.12
No installations found matching the request
@charliermarsh charliermarsh added cli Related to the command line interface preview Experimental behavior labels Jul 4, 2024
@zanieb
Copy link
Member

zanieb commented Jul 4, 2024

It's a little more sane with a couple requests:

❯ cargo run -q -- python uninstall 3.11 3.12
warning: `uv python uninstall` is experimental and may change without warning.
Looking for Python installations matching Python 3.11 (any-3.11-any-any-any)
No installations found matching Python 3.11
Looking for Python installations matching Python 3.12 (any-3.12-any-any-any)
No installations found matching Python 3.12
No installations found matching the requests

It seems like we could adjust it when there's one or make some of the lines tracing output?

@charliermarsh
Copy link
Member Author

Yeah agreed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cli Related to the command line interface preview Experimental behavior
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants