An open API service indexing awesome lists of open source software.

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

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
```