Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 910 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 910 Bytes

Tic-Tac-Toe Game

This is a simple Tic-Tac-Toe game implemented in Python using the pygame library.

Table of Contents

screeshot

Installation

To run this project, you'll need Python and the pygame library. You can set up the project using the following steps:

  1. Clone the repository:

    git clone https://github.com/yourusername/ticTacToe.git
    cd ticTacToe
  2. Create a virtual environment and activate it:

    python3 -m venv venv
    source venv/bin/activate  # On Windows use `.\venv\Scripts\activate`
  3. Install the required dependencies:

    pip install -r requirements.txt

Running the Game

Once the dependencies are installed, you can run the game using:

python main.py