OpenVoice文本转语音大模型实战部署

1. 下载

git clone https://github.com/myshell-ai/OpenVoice.git

2. 配置conda

2.1 添加国内镜像源

conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes

2.2 conda源操作

conda config --show 查看当前所有配置
conda config --show-sources 查看当前使用源
conda config --remove channels 删除指定源
conda config --add channels 加指定源或者直接修改修改配置文件

3. 部署

3.1 解压

cd OpenVoice

3.2 安装conda

yum install conda

3.3 更新yum

yum update

3.4 创建虚拟环境

conda create -n openvoice python=3.9
conda activate openvoice

你可能感兴趣的:(搭建本地gpt,chatgpt,openvoice,文字转语音,语音识别)