This is a simple game of checkers I made as an exercise to help me learn pygame.
The AI implemented uses the Minimax algorithm to play.
The white player is the AI and the black player is the human player. Its the human that makes the first move.
Give it a shot and see if you can beat a computer!
The whole code is written in python3 and the only dependecy it has is the pygame
library.
First clone the repository using,
git clone [email protected]:harshit-agarwar/Checkers.git
cd checkers
Then install pygame
pip install pygame
Finally start the game. The following command might change slightly based on your operating system or the installed version of python on your system.
python main.py