We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
prefix
base_prefix
1 parent 72dc724 commit b818199Copy full SHA for b818199
crates/uv-interpreter/src/python_environment.rs
@@ -50,7 +50,7 @@ impl PythonEnvironment {
50
return Err(Error::RequestedPythonNotFound(python.to_string()));
51
};
52
Ok(Self {
53
- root: interpreter.base_prefix().to_path_buf(),
+ root: interpreter.prefix().to_path_buf(),
54
interpreter,
55
})
56
}
@@ -59,7 +59,7 @@ impl PythonEnvironment {
59
pub fn from_default_python(platform: &Platform, cache: &Cache) -> Result<Self, Error> {
60
let interpreter = find_default_python(platform, cache)?;
61
62
63
64
65
0 commit comments