1 2 3 4 5 6
#[cfg(target_os = "linux")] pub static PYTHON: &str = "python3.10"; #[cfg(target_os = "macos")] pub static PYTHON: &str = "python3"; #[cfg(target_os = "windows")] pub static PYTHON: &str = "python";