Makefile 247 B

12345678910
  1. .SILENT: help
  2. help:
  3. echo Options:
  4. echo make venv: create virtual environment
  5. venv: code/requirements.txt
  6. [ -d ./venv ] || python3 -m venv venv
  7. ./venv/bin/pip install --upgrade pip
  8. ./venv/bin/pip install -Ur code/requirements.txt
  9. touch venv