From 80284fcab42200156932018f1809fcc218ec1422 Mon Sep 17 00:00:00 2001 From: caryoscelus Date: Sun, 8 May 2022 17:37:04 +0400 Subject: [PATCH] add easy to use startup script --- start-venv.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 start-venv.sh diff --git a/start-venv.sh b/start-venv.sh new file mode 100755 index 00000000..be8b5888 --- /dev/null +++ b/start-venv.sh @@ -0,0 +1,8 @@ +#! /usr/bin/env bash + +if [ ! -f venv/bin/activate ] ; then + python3 -m venv venv +fi +source venv/bin/activate +python3 -m pip install -r requirements.txt +python3 zeronet.py