VortexDocs
  • Vortex Engine
    • Installation
      • 1. Install Python
      • 2. Install VortexEngine
      • 3. Install Additional Dependencies
    • Getting Started
      • 1. Initialize Vortex
      • 2. Create Game Objects
      • 3. Add Labels
      • 4. Add a First Person Controller
      • 5. Run the Game
    • API Reference
      • 1. Vortex Class
      • 2. Tool Module
      • 3. Data Module
    • Example
      • 1. Basic Example
      • 2. API Integration Example
    • Troubleshooting
      • 1. ModuleNotFoundError
        • 1. Verify Installation:
        • 2. Check Python Environment:
        • 3. Verify Import Statement:
      • 2. Color Not Recognized
        • 1. Check Color Input:
        • 2. Refer to color_dict:
        • 3. Update Color Usage:
        • 4. Verify Code:
    • Additional Resources
  • Vortex Breakout
Powered by GitBook
On this page
  • For Windows:
  • For macOS:
  • For Linux:
  1. Vortex Engine
  2. Installation

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.

PreviousInstallationNext2. Install VortexEngine

Last updated 9 months ago

For Windows:

  1. Visit the .

  2. Download the latest Python 3.x installer.

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

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

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


python --version

For macOS:

  1. Visit the .

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

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

  4. 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
Python Downloads page
Python Downloads page