diff --git a/qt/launcher/src/main.rs b/qt/launcher/src/main.rs index c350bcc14..117051fc7 100644 --- a/qt/launcher/src/main.rs +++ b/qt/launcher/src/main.rs @@ -1015,6 +1015,9 @@ fn uv_command(state: &State) -> Result { .env("UV_DEFAULT_INDEX", &pypi_mirror); } + // have uv use the system certstore instead of webpki-roots' + command.env("UV_NATIVE_TLS", "1"); + Ok(command) }