LocalAI/backend/python/diffusers/Makefile
2023-12-11 08:20:34 +01:00

14 lines
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