mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
14 lines
270 B
Makefile
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
|