From cbaad146d5aca9bd714bb6c69b10dd7c02d88f9d Mon Sep 17 00:00:00 2001 From: torzdf <36920800+torzdf@users.noreply.github.com> Date: Sat, 10 Aug 2024 12:42:47 +0100 Subject: [PATCH] Bugfix: Linux installer - pin git to < 2.45 --- .install/linux/faceswap_setup_x64.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.install/linux/faceswap_setup_x64.sh b/.install/linux/faceswap_setup_x64.sh index 74825a08..26d3997f 100644 --- a/.install/linux/faceswap_setup_x64.sh +++ b/.install/linux/faceswap_setup_x64.sh @@ -380,7 +380,9 @@ activate_env() { install_git() { # Install git inside conda environment info "Installing Git..." - yellow ; conda install git -q -y + # TODO On linux version 2.45.2 makes the font fixed TK pull in Python from + # graalpy, which breaks pretty much everything + yellow ; conda install "git<2.45" -q -y } delete_faceswap() {