mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
5e155fb081
fix(python): pin python deps Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
15 lines
244 B
Makefile
15 lines
244 B
Makefile
CONDA_ENV_PATH = "diffusers.yml"
|
|
|
|
.PHONY: diffusers
|
|
diffusers:
|
|
@echo "Installing $(CONDA_ENV_PATH)..."
|
|
bash install.sh $(CONDA_ENV_PATH)
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running diffusers..."
|
|
bash run.sh
|
|
@echo "Diffusers run."
|
|
|
|
test:
|
|
bash test.sh
|