Installation
Prerequisites
In order to use pygame-topdownengine, you will need the following installed:
- Python 3.12+
- pygame-ce 2.5.7+
- NOTE: If you do not have pygame-ce installed when you run the installation command, it will install it for you. If you already have the pygame package installed, you MUST uninstall it before attempting to install pygame-ce or pygame-topdownengine.
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