LocalAI/backend/python/petals/Makefile

12 lines
232 B
Makefile
Raw Normal View History

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