Currently in Development: Brick Breaker game with pygame built in physics library.
Ensure you have Python 3.10.11 installed on your system. You can download it from python.org.
It's a good practice to use a virtual environment to manage dependencies. Navigate to your project directory and run the following command:
python3.10 -m venv venvOn Windows, use venv\Scripts\activate
With your virtual environment activated, install the dependencies using the requirements.txt file:
pip install -r requirements.txtWith the virtual environment activated and dependencies installed, run the game using:
python brick_breaker.pyYour project directory should look like this:
project_directory/
│
├── brick_breaker.py
├── requirements.txt
└── venv/
Following these steps will set up your environment and allow you to run your Brick Breaker game. If you have any questions or run into any issues, feel free to ask!