Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import os
|
2 |
-
|
3 |
|
4 |
import gradio as gr
|
5 |
from pathlib import Path
|
@@ -15,7 +15,7 @@ os.system("python3 -m pip install --upgrade pip")
|
|
15 |
|
16 |
|
17 |
# install mt3
|
18 |
-
os.system("git clone --branch=main https://github.com/
|
19 |
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
20 |
os.system("python3 -m pip install -e .")
|
21 |
|
|
|
1 |
import os
|
2 |
+
os.system("pip install gradio==2.4.6")
|
3 |
|
4 |
import gradio as gr
|
5 |
from pathlib import Path
|
|
|
15 |
|
16 |
|
17 |
# install mt3
|
18 |
+
os.system("git clone --branch=main https://github.com/inotiawu/mt3")
|
19 |
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
20 |
os.system("python3 -m pip install -e .")
|
21 |
|