Update README.md

This commit is contained in:
Alex Z 2024-01-17 09:01:36 +08:00 committed by GitHub
parent e78fd0de96
commit d78c872047
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,21 +38,21 @@ https://github.com/RVC-Boss/GPT-SoVITS/assets/129054828/05bee1fa-bdd8-4d85-9350-
Tested with Python 3.9, PyTorch 2.0.1, and CUDA 11. Tested with Python 3.9, PyTorch 2.0.1, and CUDA 11.
#### Quick Install with Conda ### Quick Install with Conda
```bash ```bash
conda create -n GPTSoVits python=3.9 conda create -n GPTSoVits python=3.9
conda activate GPTSoVits conda activate GPTSoVits
bash install.sh bash install.sh
``` ```
### Install Manually
### Pip Packages #### Pip Packages
```bash ```bash
pip install torch numpy scipy tensorboard librosa==0.9.2 numba==0.56.4 pytorch-lightning gradio==3.14.0 ffmpeg-python onnxruntime tqdm cn2an pypinyin pyopenjtalk g2p_en chardet pip install torch numpy scipy tensorboard librosa==0.9.2 numba==0.56.4 pytorch-lightning gradio==3.14.0 ffmpeg-python onnxruntime tqdm cn2an pypinyin pyopenjtalk g2p_en chardet
``` ```
### Additional Requirements #### Additional Requirements
If you need Chinese ASR (supported by FunASR), install: If you need Chinese ASR (supported by FunASR), install:
@ -60,21 +60,26 @@ If you need Chinese ASR (supported by FunASR), install:
pip install modelscope torchaudio sentencepiece funasr pip install modelscope torchaudio sentencepiece funasr
``` ```
### FFmpeg #### FFmpeg
#### Ubuntu/Debian Users ##### Conda Users
```bash
conda install ffmpeg
```
##### Ubuntu/Debian Users
```bash ```bash
sudo apt install ffmpeg sudo apt install ffmpeg
``` ```
#### MacOS Users ##### MacOS Users
```bash ```bash
brew install ffmpeg brew install ffmpeg
``` ```
#### Windows Users ##### Windows Users
Download and place [ffmpeg.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe) and [ffprobe.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe) in the GPT-SoVITS root. Download and place [ffmpeg.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe) and [ffprobe.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe) in the GPT-SoVITS root.