Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (33 loc) · 863 Bytes

README.md

File metadata and controls

45 lines (33 loc) · 863 Bytes

Pythonchess

How to install

Download pyhton3 and git. pyhton3.10 is recommendable but others work too.

The following instructions are for linux. If you don't know how to apply them for your OS (i.e. windows or mac), consider prompting ChatGPT to translate them to your OS.

git clone https://github.com/PraxTube/chess-ai.git
cd chess-ai
python3.10 -m venv venv

Now for linux

source venv/bin/activate

And for windows

venv/Scripts/activate

After that install the requirements for this project

pip install -r requirements.txt
pip install -e .

You can now run the project file with

pyhton main.py

Milestone II

  • Alpha-beta search
  • Sophisticated Better evaluation function
  • Unit tests for legal moves
  • Unit tests for chess engine
  • Benchmarks that test different depths