Spaces:
Runtime error
Runtime error
File size: 661 Bytes
ac03725 |
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 |
module.exports = {
run: [
{
method: "script.start",
params: {
uri: "torch.js",
params: {
venv: "env", // Edit this to customize the venv folder path
// 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
message: "pip install -r requirements.txt"
}
},
{
method: "fs.link",
params: {
venv: "env"
}
}
]
}
|