Change default Python location. Update build instructions. Add container build instructions

This commit is contained in:
jude
2023-05-08 17:04:51 +01:00
parent 98191d29ee
commit 734a39a001
4 changed files with 25 additions and 23 deletions

View File

@ -48,5 +48,5 @@ lazy_static! {
.map_or(THEME_COLOR_FALLBACK, |inner| u32::from_str_radix(&inner, 16)
.unwrap_or(THEME_COLOR_FALLBACK));
pub static ref PYTHON_LOCATION: String =
env::var("PYTHON_LOCATION").unwrap_or_else(|_| "venv/bin/python3".to_string());
env::var("PYTHON_LOCATION").unwrap_or_else(|_| "/usr/bin/python3".to_string());
}