Shrirang20 commited on
Commit
5688386
·
verified ·
1 Parent(s): 4218c25

Create setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +22 -0
setup.sh ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Install the custom version of NeMo by AI4Bharat
2
+ wget https://indic-asr-public.objectstore.e2enetworks.net/ai4b_nemo.zip
3
+
4
+ unzip -q /content/ai4b_nemo.zip && cd NeMo
5
+ bash reinstall.sh
6
+
7
+ cd ..
8
+
9
+ git clone -q https://github.com/VarunGumma/IndicTransTokenizer
10
+ cd IndicTransTokenizer
11
+ pip install -q --editable ./
12
+ cd ..
13
+
14
+ apt-get install libsndfile1-dev ffmpeg
15
+
16
+ git clone https://github.com/gokulkarthik/TTS
17
+ cd TTS
18
+
19
+ pip3 install -e .[all]
20
+ pip3 install -r requirements.txt
21
+
22
+ cd ..