Skip to content

Instantly share code, notes, and snippets.

@brodul
Created August 26, 2020 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brodul/adbc3d555bac109e9317bf9dbf149238 to your computer and use it in GitHub Desktop.
Save brodul/adbc3d555bac109e9317bf9dbf149238 to your computer and use it in GitHub Desktop.
python Makefile
SHELL= bash
VENV = venv
install: requirements.txt
python3 -m venv $(VENV)
$(VENV)/bin/pip install -r requirements.txt --upgrade
clean:
rm -rf $(VENV)
repl: install
$(VENV)/bin/python3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment