> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aseeflow.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Download and Installation

First, you need to install ASEE Flow and the Camunda Modeler. The following section describes how to install ASEE Flow locally on your machine.

<Note>
  **Customer access required.** ASEE Flow artifacts — Maven dependencies, Docker images, and pre-packaged distribution downloads — are hosted in a private repository available to ASEE Flow customers. To obtain the repository location and access credentials, [contact ASEE Software Solutions](https://contentservices.asee.io/asee-software-solutions/#contact-us). See [Accessing artifacts](/introduction/downloading-aseeflow#accessing-artifacts) for setup steps.
</Note>

<Tip>
  If you prefer, you can also run ASEE Flow with Docker:

  ```bash theme={null}
  docker pull <asee-registry>/aseeflow-bpm-platform:run-1.0.1
  docker run -d --name aseeflow -p 8080:8080 <asee-registry>/aseeflow-bpm-platform:run-1.0.1
  ```

  Afterwards, you can [install the Camunda Modeler](#asee-flow-modeler).
</Tip>

## Prerequisites

Make sure you have the following installed:

* Java Runtime Environment 17

You can verify this in your terminal, shell, or command line:

```bash theme={null}
java -version
```

If you need to install a Java Runtime Environment, you can [download it from Oracle](https://www.oracle.com/technetwork/java/javase/downloads/index.html).

### Supported Java versions

ASEE Flow requires JDK 17 or later. Make sure to use a Java version from the [list of supported environments](/introduction/supported-environments).

## ASEE Flow

First, download a distribution of ASEE Flow. You can choose from different distributions for [various application servers](/installation/full). In this tutorial, we'll use ASEE Flow Run. Download it from the ASEE Flow customer repository (see [Accessing artifacts](/introduction/downloading-aseeflow#accessing-artifacts)).

After downloading the distribution, unpack it inside a directory of your choice.

Then execute the script named `start.bat` (Windows) or `start.sh` (Unix). This starts the application server. Open your web browser and navigate to [http://localhost:8080/](http://localhost:8080/) to visit the welcome page.

## Camunda Modeler

Download the Camunda Modeler from [the download page](https://camunda.com/download/modeler/).

After downloading, unzip it into a folder of your choice, then run `camunda-modeler.exe` (Windows), `camunda-modeler.app` (Mac), or `camunda-modeler.sh` (Linux).

### Next step

Once you've installed ASEE Flow and the Camunda Modeler, move on to [model and execute your first process](/get-started/quick-start/service-task).
