mirror of
https://github.com/mudler/LocalAI
synced 2026-05-03 21:38:32 +00:00
11 lines
247 B
Makefile
11 lines
247 B
Makefile
|
|
.PONY: diffusers
|
||
|
|
diffusers:
|
||
|
|
@echo "Creating virtual environment..."
|
||
|
|
@conda env create --name diffusers --file diffusers.yml
|
||
|
|
@echo "Virtual environment created."
|
||
|
|
|
||
|
|
.PONY: run
|
||
|
|
run:
|
||
|
|
@echo "Running diffusers..."
|
||
|
|
bash run.sh
|
||
|
|
@echo "Diffusers run."
|