- Blind mode tutorial
lichess.org
Donate

Convert exe uci engine to linux uci engine

How to Convert exe uci engine to linux uci engine i ask this for my own engine

How to Convert exe uci engine to linux uci engine i ask this for my own engine

I mean i created a chess engine in Python and converted to exe but how yo convert this exe uci to a uci works on linux

I mean i created a chess engine in Python and converted to exe but how yo convert this exe uci to a uci works on linux

Skip the step with the windows exe and try to run the python directly on linux.

Skip the step with the windows exe and try to run the python directly on linux.

There is no know way how to convert Windows executable into Linux executable.
You can build it for Linux - if you use compiled languages, or "pack it" (for the lack of better term) for interpreted languages.

This may be a way:
http://www.pyinstaller.org/

Usage is described i.e. here or in docs:
https://medium.com/analytics-vidhya/how-to-create-executable-of-your-python-application-from-linux-windows-mac-bcbcdd4603d4

Unless you absolutely need one file, it is better to use Python directly with UCI protocol (i. e. using python-chess).

There is no know way how to convert Windows executable into Linux executable. You can build it for Linux - if you use compiled languages, or "pack it" (for the lack of better term) for interpreted languages. This may be a way: http://www.pyinstaller.org/ Usage is described i.e. here or in docs: https://medium.com/analytics-vidhya/how-to-create-executable-of-your-python-application-from-linux-windows-mac-bcbcdd4603d4 Unless you absolutely need one file, it is better to use Python directly with UCI protocol (i. e. using python-chess).

This topic has been archived and can no longer be replied to.