* Update Req, Shell Scripts and Docs * Use half-width punctuation marks * Update install.sh
2.3 KiB
2.3 KiB
In [ ]:
!pip install -q condacolab
# Setting up condacolab and installing packages
import condacolab
condacolab.install_from_url("https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh")
%cd -q /content
!git clone https://github.com/RVC-Boss/GPT-SoVITS
%cd -q GPT-SoVITS
!bash install.shIn [ ]:
# @title UVR5 Pretrained Models
!wget https://www.modelscope.cn/models/XXXXRT/UVR5Weights4GSV/resolve/master/uvr5_weights.zip
!unzip uvr5_weights.zip
!rm -rf uvr5_weights.zip
!mv uvr5_weights/* tools/uvr5/uvr5_weights
!rm -rf uvr5_weightsIn [ ]:
# @title launch WebUI 启动WebUI
!/usr/local/bin/pip install ipykernel
!sed -i '10s/False/True/' /content/GPT-SoVITS/config.py
%cd /content/GPT-SoVITS/
!/usr/local/bin/python webui.py