Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 574 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 574 Bytes

Connect4Algorithm

Nicholas J. Grosso

This program is the popular board game connect-4 with a GUI interface written in python3. You can choose between two in-person players or playing off against MinMax algorithm. You will need some dependencies as listed below.

Debian/Ubuntu:

sudo apt update
sudo apt install python3
sudo apt install python3-pip
pip install numpy
pip install pygame
pip install tkinter

OSX:

brew update
brew install python3
brew install pip3
pip3 install numpy
pip3 install pygame
pip3 install tkinter

Running command:

python3 main.py