-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
59 lines (59 loc) · 1.73 KB
/
install.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
run: [
// Edit this step to customize the git repository to use
{
method: "shell.run",
params: {
message: [
"git clone https://github.com/JarodMica/StyleTTS-WebUI/ app"
]
}
},
{
method: "shell.run",
params: {
path: "app",
message: [
"git submodule init",
"git submodule update --remote --recursive"
]
}
},
// Delete this step if your project does not use torch
{
method: "script.start",
params: {
uri: "torch.js",
params: {
venv: "venv", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
// xformers: true // uncomment this line if your project requires xformers
}
}
},
{
method: "shell.run",
params: {
venv: "venv", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
message: [
"pip install gradio devicetorch",
"pip install -r requirements.txt",
"pip uninstall -y StyleTTS2",
"pip install ./modules/StyleTTS2/",
"python ./modules/StyleTTS2/styletts2/download_punkt.py"
]
}
},
{
method: "fs.download",
params: {
uri: [
"https://huggingface.co/yl4579/StyleTTS2-LibriTTS/resolve/main/Models/LibriTTS/epochs_2nd_00020.pth",
"https://huggingface.co/yl4579/StyleTTS2-LibriTTS/resolve/main/Models/LibriTTS/config.yml",
],
dir: "app/models/pretrain_base_1/"
}
}
]
}