A simple 2D pixel-art game built with Pygame.
⚠️ This game requires Python 3.12.3.
It has not been tested with newer versions — compatibility with newer Python versions is not guaranteed.
-
Clone the repository
git clone https://github.com/yourusername/Turtle_Game.git cd Turtle_Game -
Create and activate a virtual environment (optional but recommended)
-
On Windows:
python -m venv venv venv\Scripts\activate
-
On Linux/Mac:
python3 -m venv venv source venv/bin/activate
-
-
Install dependencies
pip install -r requirements.txt
-
Run the game
python main.py
or
python3 main.py