-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.js
69 lines (69 loc) · 2.41 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
60
61
62
63
64
65
66
67
68
69
module.exports = {
run: [
// Edit this step to customize the git repository to use
{
method: "shell.run",
params: {
message: [
"git clone https://github.com/peanutcocktail/echomimic_v2 app",
]
}
},
// Delete this step if your project does not use torch
// {
// method: "script.start",
// params: {
// uri: "torch.js",
// params: {
// venv: "env", // 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
// }
// }
// },
// Edit this step with your custom install commands
{
method: "shell.run",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
message: [
"uv pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 xformers==0.0.28.post3 --index-url https://download.pytorch.org/whl/cu124",
"uv pip install torchao --index-url https://download.pytorch.org/whl/nightly/cu124",
"pip install -r requirements.txt",
"uv pip install --no-deps facenet_pytorch==2.6.0",
]
}
},
{
method: "shell.run",
params: {
path: "app", // Edit this to customize the path to start the shell from
venv: "env",
message: [
"uv pip install huggingface_hub[cli]==0.25.0",
]
}
},
{
when: "{{platform !== 'linux'}}",
method: "fs.link",
params: {
venv: "app/env"
}
},
{
method: "shell.run",
params: {
path: "app", // Edit this to customize the path to start the shell from
venv: "env",
message: [
"huggingface-cli download BadToBest/EchoMimicV2 --local-dir pretrained_weights",
"huggingface-cli download stabilityai/sd-vae-ft-mse --local-dir pretrained_weights/sd-vae-ft-mse",
"huggingface-cli download lambdalabs/sd-image-variations-diffusers --local-dir pretrained_weights/sd-image-variations-diffusers",
"huggingface-cli download cocktailpeanut/audio_processor --local-dir pretrained_weights/audio_processor"
]
}
},
]
}