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:

  1. Download the latest Python 3.x installer.

  2. Run the installer and ensure the "Add Python to PATH" option is checked.

  3. Click "Install Now" to begin the installation.

  4. Verify the installation by opening Command Prompt and typing:


python --version

For macOS:

  1. Download the latest Python 3.x installer for macOS.

  2. Open the downloaded .pkg file and follow the instructions to install Python.

  3. Verify the installation by opening Terminal and typing:


python3 --version

For Linux:

  1. Open your terminal.

  2. Install Python 3.x using your package manager. For example, on Debian-based distributions, use:


sudo apt update
sudo apt install python3
  1. Verify the installation by typing:


python3 --version

Last updated