From 1115e2eb3b573c520de93b5020a84346ba715636 Mon Sep 17 00:00:00 2001 From: Daniel afx Date: Sun, 20 Sep 2020 17:18:41 +0300 Subject: [PATCH] add venv setup script --- README.md | 4 +++- setup_venv.sh | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 setup_venv.sh diff --git a/README.md b/README.md index 7b65117..bcf5078 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# globalforest \ No newline at end of file +# GlobalForest + +A map-based social gardening diff --git a/setup_venv.sh b/setup_venv.sh new file mode 100755 index 0000000..d23dc04 --- /dev/null +++ b/setup_venv.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +python3 -m pip install --upgrade --user pip setuptools virtualenv +python3 -m virtualenv venv +source venv/bin/activate +ls +pip install -r requierments.txt