install syzygy and ai server

polyglot-syzygy
Thibault Duplessis 2015-10-08 12:06:02 +02:00
parent 95b839b75c
commit dfffa02f20
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/sh
./bin/install-stockfish
./bin/install-polyglot
./bin/install-syzygy
cp conf/polyglot.ini /etc/polyglot.ini
vim /etc/polyglot.ini
vim conf/application.conf
./local/Stockfish/src/stockfish bench

11
bin/install-syzygy 100755
View File

@ -0,0 +1,11 @@
#!/bin/sh
if [ -d local/tb ]; then
exit 0;
fi
cd local
curl -O 91.121.169.81/syzygy/syzygy-5-man.tgz
tar xzf syzygy-5-man.tgz
mv syzygy tb
cd ..