hack-house/run_client.sh
2022-12-01 09:59:44 +03:00

13 lines
191 B
Bash
Executable File

#! /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