# pip install huggingface-cli import os os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com' model_list = [ "parler-tts/parler-tts-mini-v1", "ylacombe/parler-large-v1-og", ] for model_path in model_list: os.system(f"huggingface-cli download --resume-download {model_path} --local-dir ./{model_path} --local-dir-use-symlinks False")