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