mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-08-30 10:40:04 +08:00
Add Xcode-Commandline-Tool Installation
This commit is contained in:
parent
3e177aaaae
commit
04aaa6ae34
16
install.sh
16
install.sh
@ -131,6 +131,22 @@ if [ "$(uname)" != "Darwin" ]; then
|
||||
|
||||
echo "Installing G++..."
|
||||
conda install -c conda-forge gxx -q -y
|
||||
else
|
||||
if ! xcode-select -p &>/dev/null; then
|
||||
echo "Installing Xcode Command Line Tools..."
|
||||
xcode-select --install
|
||||
fi
|
||||
echo "Waiting For Xcode Command Line Tools Installation Complete..."
|
||||
while true; do
|
||||
sleep 20
|
||||
|
||||
if xcode-select -p &>/dev/null; then
|
||||
echo "Xcode Command Line Tools Installed"
|
||||
break
|
||||
else
|
||||
echo "Installing,Please Wait..."
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
echo "Installing ffmpeg and cmake..."
|
||||
|
Loading…
x
Reference in New Issue
Block a user