Compare commits

...

3 Commits

Author SHA1 Message Date
e1732a364fed
ec813e862f
Merge a4323233c67133f33be2db180bef07dda1376e4d into d46c069e52caa0d75b5d1119b7dd918322e7b590 2025-06-18 10:39:58 +08:00
XXXXRT666
d46c069e52
Remove Debug Code (#2471) 2025-06-18 10:38:54 +08:00
e1732a364fed
a4323233c6
Update TTS.py: +configs["version"] = self.version 2025-06-08 06:32:05 -07:00
2 changed files with 2 additions and 3 deletions

View File

@ -367,6 +367,7 @@ class TTS_Config:
configs = deepcopy(self.default_configs)
if self.configs is not None:
configs["custom"] = self.update_configs()
configs["version"] = self.version
if configs_path is None:
configs_path = self.configs_path

View File

@ -33,7 +33,7 @@ on_error() {
run_conda_quiet() {
local output
output=$(conda install --yes --quiet "$@" 2>&1) || {
output=$(conda install --yes --quiet -c conda-forge "$@" 2>&1) || {
echo -e "${ERROR} Conda install failed:\n$output"
exit 1
}
@ -60,8 +60,6 @@ if ! command -v conda &>/dev/null; then
exit 1
fi
run_conda_quiet gcc
USE_CUDA=false
USE_ROCM=false
USE_CPU=false