23 lines
512 B
Bash
23 lines
512 B
Bash
#!/bin/bash
|
|
|
|
# check that python is installed
|
|
if ! [ -x "$(command -v python)" ]; then
|
|
echo 'Error: python is not installed. Please install it to continue.' >&2
|
|
exit 1
|
|
fi
|
|
|
|
# check that java is installed
|
|
if ! [ -x "$(command -v java)" ]; then
|
|
echo 'Error: java is not installed. Please install it to continue.' >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ -d .venv ]; then; else python -m venv .venv; fi
|
|
|
|
source .venv/bin/activate
|
|
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r requirements.txt
|
|
|
|
python ./client.py
|