Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 950 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 950 Bytes

ChatGPT Tetris

This repository was inspired by the ChatGPT Minesweeper game created by sorrge.
It was created by giving ChatGPT prompts to implement features in this game, with some help from myself when ChatGPT was confused.

ChatGPT Instructions (Written by ChatGPT)

To play the game, follow these steps:

  1. Create a Python 3 virtual environment by running python3 -m venv env in the directory where you want to run the game.
  2. Activate the virtual environment by running source env/bin/activate on Linux/macOS or env\Scripts\activate on Windows.
  3. Install Pygame by running pip install pygame.
  4. Run the game by executing python3 Tetris.py.

To deactivate the virtual environment, run deactivate on Linux/macOS or env\Scripts\deactivate on Windows.