add easy to use startup script
This commit is contained in:
parent
36c0869846
commit
80284fcab4
1 changed files with 8 additions and 0 deletions
8
start-venv.sh
Executable file
8
start-venv.sh
Executable 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
|
Loading…
Reference in a new issue