mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-23 02:12:36 +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."
|