From 719b529a2e8d2b189ec696c5c77accc18abf74a0 Mon Sep 17 00:00:00 2001 From: RihabFekii Date: Fri, 31 Mar 2023 11:07:05 +0100 Subject: [PATCH] venv with Makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6997bbd --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +PYTHON_INTERPRETER = python3 + +env: + @echo ">>> Creating a python virtual environment with venv" + $(PYTHON_INTERPRETER) -m venv env + @echo ">>> A new virtual env is created. Activate it with:\nsource env/bin/activate ." \ No newline at end of file