1
0
Fork 0
mirror of https://github.com/deepfakes/faceswap synced 2025-06-07 10:43:27 -04:00

Bugfix: Linux installer - pin git to < 2.45

This commit is contained in:
torzdf 2024-08-10 12:42:47 +01:00
parent 6fe300e601
commit cbaad146d5

View file

@ -380,7 +380,9 @@ activate_env() {
install_git() { install_git() {
# Install git inside conda environment # Install git inside conda environment
info "Installing Git..." 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() { delete_faceswap() {