Spaces:
Runtime error
Runtime error
File size: 297 Bytes
977380c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
VENV = .venv
PYTHON = $(VENV)/bin/python3
PIP = $(VENV)/bin/pip
STREAMLIT = $(VENV)/bin/streamlit
run: $(VENV)/bin/activate
$(STREAMLIT) run app.py
$(VENV)/bin/activate: requirements.txt
python3 -m venv $(VENV)
$(PIP) install -r requirements.txt
clean:
rm -rf __pycache__
rm -rf $(VENV)
|