Written by @Minejerik

Hello! Today we will be making a simple sand/particle game in pygame.

Here is the Github repo of the game: https://github.com/Minejerik/sand_game_python

Installing Pygame

First we need to install pygame.

Make sure to have python3 installed first!

IF YOU ARE ON LINUX:

Make sure to create, and activate a virtual environment first

$ python3 -m venv venv # Creating the virtual environment
$ source ./venv/bin/activate # Activating the environment

Once you are ready to install pygame, run:

$ pip install pygame # Installs pygame

Getting Started

It is now time for the fun part, we can start work on the actual game part of the game!