add easy to use startup script

This commit is contained in:
caryoscelus 2022-05-08 17:37:04 +04:00
parent 36c0869846
commit 80284fcab4
1 changed files with 8 additions and 0 deletions

8
start-venv.sh Executable file
View File

@ -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