This is the first time I am creating a batch file. I want to run a chess program using graphical interface. Creator of this program wrote:
Sunfish' can communicate through the XBoard/CECP protocol by the command pypy -u xboard.py.
So I am wondering how can I make this work. I thought of something like this:
@ECHO
C:\Users\username\AppData\Local\Programs\Python -u xboard.py
PAUSE
However it brings error:
C:\Users\username\AppData\Local\Programs\Python' is not recognized as an internal or external command, operable program or batch file.
Maybe somethins is wrong with the directory I gave? My python app is under this directory C:\Users\username\AppData\Local\Programs\Python\Python36\python.exe
Here is the link to chess program I want to run, under the run section it is written what I wrote here.