Files
GPT-SoVITS/colab_webui.ipynb
T
XXXXRT666 c0b46314ca Support Python 3.11, Clean Docs, and Update Setup (#2290)
* Update Req, Shell Scripts and Docs

* Use half-width punctuation marks

* Update install.sh
2025-04-15 15:42:23 +08:00

2.3 KiB

Open In Colab

环境配置 environment

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.sh
In [ ]:
# @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_weights
In [ ]:
# @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