Skip to content
fonkap edited this page Jan 1, 2017 · 10 revisions

To be able to run in windows I did the following steps:

  1. I installed Python 2.7.13 (32bit) from:

    https://www.python.org/downloads/

  2. downloaded sources from github

  3. installed deps psutil-4.4.2 and PyQt4-4.11.4 from:

    Unofficial Windows Binaries for Python Extension Packages http://www.lfd.uci.edu/~gohlke/pythonlibs/

    Exact filenames were : PyQt4-4.11.4-cp27-none-win32.whl and psutil-4.4.2-cp27-cp27m-win32.whl

    Installation from wheels is easy with pip:

    pip install PyQt4-4.11.4-cp27-none-win32.whl

    pip install psutil-4.4.2-cp27-cp27m-win32.whl

  4. downloaded Lucas Chess windows binary distribution

  5. extracted some deps from library.zip included in Lucas Chess binaries

    chardet\

    chess\

    pyaudio.pyo

    and copied to a folder lucaschess_deps\

    (It may be possible to install dependencies with pip also...)

  6. added lucaschess_deps\ to PYTHONPATH env variable

    set PYTHONPATH=..\lucaschess_deps\

  7. ran with python (don't forget -O option)

    python -O Lucas.py

.... and it worked!

Clone this wiki locally