The presentation pitch is available at this link.
...
...
$ chmod +x ./pmf.sh
Install a virtualenv:
$ python -m venv venv
Activate the virtualenv:
$ source venv/bin/activate
$ pip install wheel
$ pip install .
$ pip install -r requirements.txt
Now you have:
$ fpm_tablut_player
usage: fpm_tablut_player [-h] [--role {black,white}] [--timeout TIMEOUT] [--server SERVER]
optional arguments:
-h, --help show this help message and exit
--role {black,white} player role
--timeout TIMEOUT move timeout
--server SERVER server ip address
Black Player
$ ./pmf.sh 'black' 60 '127.0.0.1'
White Player
$ ./pmf.sh 'white' 60 '127.0.0.1'
$ git submodule update --init --recursive --remote
$ cd server/Tablut
Follow the instructions insde the README.md file.
...