This is a 2D platform game made with Pygame
First, you need to download the repository. You can either run the script below on the command-line or terminal:
git clone https://github.com/thanhtung1005/pixel-adventure-pygame
cd path/to/pixel-adventure-pygame
-
Create environment by following command:
python -m venv env # For windows python3 -m venv env # For Linux or MaxOS
-
Activate environment:
env/Scripts/activate # For windows source env/bin/activate # For Linux or MaxOS
-
Install packages:
pip install -r requirements.txt
python main.py # For windows
python3 main.py # For Linux or MaxOS