Installation

Prerequisites

In order to use pygame-topdownengine, you will need the following installed:

Installation

In order to install pygame-topdownengine, make sure Python and pip are both installed and in PATH. Then, run this command into your terminal:
pip install pygame-topdownengine

That’s it! If everything worked properly, you should have pygame-topdownengine installed and ready to go!. If the command failed, try creating and activating a virtual machine and then running the installation command again. You can create a virtual machine using the following commands.

# Make a virtual environment called 'venv'
python -m venv venv

# Activate 'venv' on Linux or macOS
source venv/bin/activate

# Activate 'venv' on Windows Command Prompt
venv\Scripts\activate.bat

# Activate 'venv' on Windows Powershell
venv\Scripts\activate.ps1