From ae4de2092b4aadaca4d313b4c9193aee8a6bf0ad Mon Sep 17 00:00:00 2001 From: Wouter Horlings Date: Tue, 19 Nov 2019 15:30:36 +0100 Subject: [PATCH] Created a bash script that instantiates the venv with python3 --- setup.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..c4472fb --- /dev/null +++ b/setup.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Install todoist-python +python3 -m venv --system-site-packages .venv +source .venv/bin/activate +pip install -r requirements.txt +deactivate + +