update python executable path

This commit is contained in:
Walnut
2026-04-19 02:31:47 -05:00
parent 7a38981b36
commit e13412f2c0
+1 -1
View File
@@ -35,7 +35,7 @@
/// Path to find the python executable within a virtual environment
#[cfg(target_os = "windows")]
const REL_PY_PATH: &[&str] = &["Scripts", "python3.exe"];
const REL_PY_PATH: &[&str] = &["Scripts", "python.exe"];
#[cfg(not(target_os = "windows"))]
const REL_PY_PATH: &[&str] = &["bin", "python3"];