From 15cf0fec53e45cf9b223e3dd2960f34297879a71 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Thu, 23 Sep 2021 14:44:50 -0700 Subject: [PATCH] Add friendly comments to venv-debian target The reminder to use system qt packages is probably better served by a script, but not bothering with that now. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index d4127b2f4..85e27103a 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ venv-debian: ## Provision a Python 3 virtualenv for development on a prod-like s python3 -m venv .venv-debian --system-site-packages .venv-debian/bin/pip install --upgrade pip wheel .venv-debian/bin/pip install --require-hashes -r "requirements/dev-requirements-debian.txt" + @echo "#################" + @echo "Virtualenv with Debian system-packages is complete." + @echo "Make sure to install the apt packages for system Qt." + @echo "Then run: source .venv-debian/bin/activate" .PHONY: venv venv: ## Provision a Python 3 virtualenv for development