diff --git a/src/plugins/core/python.rs b/src/plugins/core/python.rs index 0a5f8b64fc..39b73aac7e 100644 --- a/src/plugins/core/python.rs +++ b/src/plugins/core/python.rs @@ -349,7 +349,7 @@ impl Backend for PythonPlugin { fn install_version_impl(&self, ctx: &InstallContext) -> eyre::Result<()> { let config = Config::get(); let settings = Settings::try_get()?; - if cfg!(windows) && settings.python_compile == Some(true) { + if cfg!(windows) || settings.python_compile == Some(true) { self.install_compiled(ctx)?; } else { self.install_precompiled(ctx)?;