diffusers-image-fill / install.js
cocktailpeanut's picture
pinokio script + mac support
ac03725
raw
history blame contribute delete
661 Bytes
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"
}
}
]
}