LocalAI/backend/python/diffusers/Makefile
2023-12-20 00:04:57 +00:00

14 lines
No EOL
270 B
Makefile

.PHONY: diffusers
diffusers:
@echo "Creating virtual environment..."
@conda env create --name diffusers --file diffusers.yml
@echo "Virtual environment created."
.PHONY: run
run:
@echo "Running diffusers..."
bash run.sh
@echo "Diffusers run."
test:
bash test.sh