This is a simple Tic-Tac-Toe game implemented in Python using the pygame
library.
To run this project, you'll need Python and the pygame
library. You can set up the project using the following steps:
-
Clone the repository:
git clone https://github.com/yourusername/ticTacToe.git cd ticTacToe
-
Create a virtual environment and activate it:
python3 -m venv venv source venv/bin/activate # On Windows use `.\venv\Scripts\activate`
-
Install the required dependencies:
pip install -r requirements.txt
Once the dependencies are installed, you can run the game using:
python main.py