> For the complete documentation index, see [llms.txt](https://manis-organization-2.gitbook.io/vortexdocs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://manis-organization-2.gitbook.io/vortexdocs/vortex-engine/installation/1.-install-python.md).

# 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. Visit the [Python Downloads page](https://www.python.org/downloads/).
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:

```bash

python --version

```

## **For macOS:**

1. Visit the [Python Downloads page](https://www.python.org/downloads/).
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:

```bash

python3 --version

```

## **For Linux:**

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

```bash

sudo apt update
sudo apt install python3

```

3. Verify the installation by typing:

```bash

python3 --version

```
