From b8c4cbd9004b139e6cf6f3364ba174d9451aa3ba Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 08:48:27 +0800 Subject: [PATCH 1/6] Create install.sh --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..7417622 --- /dev/null +++ b/install.sh @@ -0,0 +1,4 @@ +#!/bin/bash +conda install gcc gxx ffmpeg cmake +conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia +pip install -r requirements.txt From 88191fe20268a5c4e15a6b77a6c78052db54a115 Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 08:50:06 +0800 Subject: [PATCH 2/6] Update requirements.txt 1.tqdm==4.59.0 may have dependency issues 2.missing requirement chardet --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5ab846f..3b5c195 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ pytorch-lightning gradio==3.14.0 ffmpeg-python onnxruntime -tqdm==4.59.0 +tqdm funasr cn2an pypinyin @@ -17,3 +17,4 @@ torchaudio modelscope sentencepiece transformers +chardet From d54a55b6809e535fa3f77dce54a796cf0657baa3 Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 08:55:32 +0800 Subject: [PATCH 3/6] Update README.md --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a7486e..4c00b4f 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,17 @@ 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. +### Quick Install with Conda +```bash +conda create -n GPTSoVits python=3.9 +conda activate GPTSoVits +bash install.sh +``` + ### Pip Packages ```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==4.59.0 cn2an pypinyin pyopenjtalk g2p_en +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 @@ -115,4 +122,4 @@ Special thanks to the following projects and contributors: - [audio-slicer](https://github.com/openvpi/audio-slicer) - [SubFix](https://github.com/cronrpc/SubFix) - [FFmpeg](https://github.com/FFmpeg/FFmpeg) -- [gradio](https://github.com/gradio-app/gradio) \ No newline at end of file +- [gradio](https://github.com/gradio-app/gradio) From 7e533c6995523748026db98584cdf9855c636368 Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 08:58:19 +0800 Subject: [PATCH 4/6] Update install.sh --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7417622..8dadb26 100644 --- a/install.sh +++ b/install.sh @@ -1,4 +1,6 @@ #!/bin/bash -conda install gcc gxx ffmpeg cmake +conda install -c conda-forge gcc +conda install -c conda-forge gxx +conda install ffmpeg cmake conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia pip install -r requirements.txt From e78fd0de96fa319c253d4e194afc3916de778b50 Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 08:59:38 +0800 Subject: [PATCH 5/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c00b4f..ee9cf5d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,8 @@ 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. -### Quick Install with Conda +#### Quick Install with Conda + ```bash conda create -n GPTSoVits python=3.9 conda activate GPTSoVits From d78c872047b8286ddeafc69a09243f8d2f22b859 Mon Sep 17 00:00:00 2001 From: Alex Z Date: Wed, 17 Jan 2024 09:01:36 +0800 Subject: [PATCH 6/6] Update README.md --- README.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ee9cf5d..36a1360 100644 --- a/README.md +++ b/README.md @@ -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. -#### Quick Install with Conda +### Quick Install with Conda ```bash conda create -n GPTSoVits python=3.9 conda activate GPTSoVits bash install.sh ``` - -### Pip Packages +### Install Manually +#### Pip Packages ```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 ``` -### Additional Requirements +#### Additional Requirements 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 ``` -### FFmpeg +#### FFmpeg -#### Ubuntu/Debian Users +##### Conda Users +```bash +conda install ffmpeg +``` + +##### Ubuntu/Debian Users ```bash sudo apt install ffmpeg ``` -#### MacOS Users +##### MacOS Users ```bash 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.