From 1c2a75b995120fb8b99058c4b8241802ef50b82f Mon Sep 17 00:00:00 2001 From: "@RandyMcMillan" Date: Fri, 6 Dec 2024 22:05:44 -0500 Subject: [PATCH] snippets/python/justfile:try virtualenv ENV --- book/snippets/python/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/snippets/python/justfile b/book/snippets/python/justfile index 3c242bf99..9a3ccd4cf 100644 --- a/book/snippets/python/justfile +++ b/book/snippets/python/justfile @@ -1,5 +1,5 @@ venv: - python -m venv ENV + python -m venv ENV || virtualenv ENV requirements: venv . ENV/bin/activate && pip install -r requirements.txt