https://github.com/mateuseap/pygame-tutorial
Pygame's begginner guide
https://github.com/mateuseap/pygame-tutorial
Last synced: about 1 year ago
JSON representation
Pygame's begginner guide
- Host: GitHub
- URL: https://github.com/mateuseap/pygame-tutorial
- Owner: mateuseap
- Created: 2023-06-28T05:48:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-28T06:19:43.000Z (about 3 years ago)
- Last Synced: 2025-02-12T03:51:29.605Z (over 1 year ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pygame Tutorial
## 🔧 Setup
Before running the project, you must have the following tool installed on your machine:
* [Python v3.11.0](https://www.python.org/downloads/release/python-3110/)
Also, you will need to clone the repository:
```bash
# Cloning the repository
git clone https://github.com/mateuseap/pygame-tutorial
# Entering in the root directory
cd pygame-tutorial
```
## 🚀 How to run
After you've cloned the repository and entered in the root directory, run the following commands:
```bash
# Creating and activating the virtual environment
python -m venv venv
. venv/bin/activate
# Installing deps and running the game
pip install pygame
python game.py
```