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