Welcome to the official download page for our software. Below, you'll find download links for Linux (x64, ARM, ARM64) and Windows (x64).
| Version | Architecture | Tar File |
|---|---|---|
| 1.5.2 | x64 | Download |
| 1.5.2 | ARM | Download |
| 1.5.2 | ARM64 | Download |
Note: To use the Docker image:
- Ensure Docker is installed and running on your system before executing the commands. See Docker docs.
- Replace
<license-key>with the actual MicroAI License key for authentication. - The image tag
<latest-version>corresponds to the MicroAI agent version; update it as needed for newer versions. - If you need to update the configuration file, you can mount the config directory using the
-voption and add this to the commands below:-v <absolute_path_to_config_directory_on_host_machine>:/home/MI/config
- Similarly, to access logs from the host machine, mount the log directory as follows:
-v <absolute_path_to_log_directory_on_host_machine>:/home/MI/data/logs
docker run --name microai_mi_<latest-version> -e MAI_API_KEY=<license-key> -ti plasmacomputing/microai_mi:linux-amd64-<latest-version> docker run --name microai_mi_<latest-version> -e MAI_API_KEY=<license-key> -ti plasmacomputing/microai_mi:linux-arm-<latest-version> docker run --name microai_mi_<latest-version> -e MAI_API_KEY=<license-key> -ti plasmacomputing/microai_mi:linux-arm64-<latest-version> | Version | Architecture | Tar File |
|---|---|---|
| 1.5.2 | x64 | Download |
Copy the following section for your operating system and architecture and update the command to match it with your details.
- Replace
<latest-version>with the latest release version. - Replace
<license-key>with a valid license key retrieved from step 3
wget https://maicdn.micro.ai/AtomML_Plus/linux/MicroAI-MI-linux-amd64-<latest-version>.tar.gz
tar -xzf MicroAI-MI-linux-amd64-<latest-version>.tar.gz
cd MicroAI-MI-linux-amd64-<latest-version>/bin
chmod +x main
sudo ./main -MAI_API_KEY=<license-key>wget https://maicdn.micro.ai/AtomML_Plus/linux_arm/MicroAI-MI-linux-arm-<latest-version>.tar.gz
tar -xzf MicroAI-MI-linux-arm-<latest-version>.tar.gz
cd MicroAI-MI-linux-arm-<latest-version>/bin
chmod +x main
sudo ./main -MAI_API_KEY=<license-key>wget https://maicdn.micro.ai/AtomML_Plus/linux_arm/MicroAI-MI-linux-arm64-<latest-version>.tar.gz
tar -xzf MicroAI-MI-linux-arm64-<latest-version>.tar.gz
cd MicroAI-MI-linux-arm64-<latest-version>/bin
chmod +x main
sudo ./main -MAI_API_KEY=<license-key>Invoke-WebRequest https://maicdn.micro.ai/AtomML_Plus/windows/MicroAI-MI-Plus-linux-arm64-<latest-version>.tar.gz -OutFile MicroAI-MI-windows-amd64-<latest-version>.tar.gz
tar -xzf MicroAI-MI-windows-arm64-<latest-version>.tar.gz
Set-Location MicroAI-MI-windows-arm64-<latest-version>/bin
Start-Process -FilePath "main.exe" -ArgumentList "MAI_API_KEY=<license-key>" -Verb RunAsSee Launching MicroAI Machine Intelligence for a detailed walkthrough.