Chess engine is a simple chess game that can be played without leaving your terminal. It supports both single player and two player game. For single player game, you need to play against computer, which uses mini-max algorithm to find the optimal move.
- Install Python
- Install Python Package Manager (pip/pip3) :
apt-get install python-pip
apt-get install python3-pip
- Install virtualenv :
apt-get install virtualenv
- Clone the repository -
git clone <remote-url>
- Go to the project directory -
cd <cloned-repo>
- Set up the environment :
- Create virtual environment files -
virtualenv venv
- Activate virtual environment -
source venv/bin/activate
- Create virtual environment files -
- Install dependencies -
pip3 install -r requirements.txt
- Start/Run game -
python3 engine.py