1. Install Python
Before installing VortexEngine, ensure that Python 3.7 or later is installed on your system. Python is a versatile programming language that serves as the foundation for running VortexEngine.
For Windows:
Visit the Python Downloads page.
Download the latest Python 3.x installer.
Run the installer and ensure the "Add Python to PATH" option is checked.
Click "Install Now" to begin the installation.
Verify the installation by opening Command Prompt and typing:
python --version
For macOS:
Visit the Python Downloads page.
Download the latest Python 3.x installer for macOS.
Open the downloaded
.pkg
file and follow the instructions to install Python.Verify the installation by opening Terminal and typing:
python3 --version
For Linux:
Open your terminal.
Install Python 3.x using your package manager. For example, on Debian-based distributions, use:
sudo apt update
sudo apt install python3
Verify the installation by typing:
python3 --version
Last updated