8 lines
174 B
Bash
Executable file
8 lines
174 B
Bash
Executable file
#! /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
|