forked from official-stockfish/fishtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
windows-step-by-step-installation.txt
31 lines (21 loc) · 1.05 KB
/
windows-step-by-step-installation.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1) Download and install Python 2.7.3 (last 2.x package and x86!)
Website:
http://www.python.org/download/releases/2.7.3/
Package to download and install:
Windows x86 MSI Installer (2.7.3)
http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi
Installation step-by-step:
- Install for all users
- Install it to some directory (I choose 'C:\Python27')
- Install it with all the features
- Next, next, finish, done
2) Get the sources
Download https://github.com/glinscott/fishtest/archive/master.zip, and unzip it to a new directory.
For example, 'c:\fishtest'.
3) User/pass
Create a username/password for yourself at http://tests.stockfishchess.org/signup
4) Running the worker process
Open a windows command prompt (run cmd.exe) in 'c:\fishtest\worker\' and type:
'c:\Python27\python.exe worker.py --concurrency <cores> <username> <password>'
[Option concurrency refers to the number of available cores in your system (not including Hyperthreaded cores!), leaving one core for the OS. For example, on my 4 core machine, I use --concurrency 3.]
5) Let it run :)