Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.36 KB

README.md

File metadata and controls

35 lines (23 loc) · 1.36 KB

ai-chess

AI-Chess is a platform to make chess artificial intelligences compete to themselves. You can play with them either.

The main objective of the project is read scripts of chess artificial intelligences and execute them against eachother. With this platform we can will be able to find the best chess artificial intelligences. You can use it to learn chess, it's basic rules and how to create an artificial intelligence with good performance.

Install

The following steps covers the setup process

Using pyenv with pyenv-virtualenv

You also should use virtualenv to build/develop the project and I recommend the use of pyenv with pyenv-virtualenv to manage multiple python environments.

pyenv install 3.7.5
pyenv virtualenv 3.7.5 ai-chess
pyenv activate ai-chess

If you have any problems installing pyenv try these common solutions.

Installing dependencies (Python 3.7.5)

Open your bash and run the follow command to install all the project dependencies, you just need to run the command one time

(PINP) $ python -m pip install -r requirements.txt