Create setup.sh
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Clone the repository
|
| 4 |
+
git clone https://github.com/CorentinJ/Real-Time-Voice-Cloning.git
|
| 5 |
+
cd Real-Time-Voice-Cloning
|
| 6 |
+
|
| 7 |
+
# Install dependencies
|
| 8 |
+
pip install -r requirements.txt
|
| 9 |
+
pip install gdown
|
| 10 |
+
apt-get install -qq libportaudio2
|
| 11 |
+
pip install https://github.com/tugstugi/dl-colab-notebooks/archive/colab_utils.zip
|
| 12 |
+
|
| 13 |
+
# Download pretrained models
|
| 14 |
+
wget https://github.com/blue-fish/Real-Time-Voice-Cloning/releases/download/v1.0/pretrained.zip
|
| 15 |
+
unzip -o pretrained.zip
|