Add client.sh script
This commit is contained in:
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
if [ -d venv ]; then
|
||||||
|
source venv/bin/activate;
|
||||||
|
python client.py
|
||||||
|
else:
|
||||||
|
python3.10 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install -r reqs.txt
|
||||||
|
python client.py
|
||||||
|
fi
|
||||||
|
|
||||||
Reference in New Issue
Block a user