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

Improve error message when default Python is not found #3770

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/uv-interpreter/src/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1175,11 +1175,11 @@ impl fmt::Display for InterpreterSource {
impl fmt::Display for InterpreterNotFound {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
match self {
Self::NoPythonInstallation(sources, Some(version)) => {
write!(f, "No Python {version} installation found in {sources}")
Self::NoPythonInstallation(sources, None | Some(VersionRequest::Default)) => {
write!(f, "No Python interpreters found in {sources}")
}
Self::NoPythonInstallation(sources, None) => {
write!(f, "No Python installation found in {sources}")
Self::NoPythonInstallation(sources, Some(version)) => {
write!(f, "No Python {version} interpreters found in {sources}")
}
Self::NoMatchingVersion(sources, VersionRequest::Default) => {
write!(f, "No Python interpreter found in {sources}")
Expand Down
Loading