Classic retro brick breaker game in python using pygame.
Note: It best works with python version >= 3.9
(Creating a virtual env is optional, but recommeded to avoid version clashes)
-
Create a venv using:
python3 -m venv venv
-
Activate the environment:
- Mac\Linux
source ./venv/bin/activate
- Windows
.\venv\Scripts\activate.bat
- Mac\Linux
-
Install the the require dependancies from 'requirements.txt'
pip install -r requirements.txt
-
Now that everything is setup, the game can finally be run. Make sure, you are located inside the parent directoy run the game using:
python app.py
-
Enjoy play the game and have fun!!