Install Custom Platform - Install Custom Platform - 2025.2 English - UG1742

Vitis Release Notes and Installation Guide (UG1742)

Document ID
UG1742
Release Date
2025-11-20
Version
2025.2 English
To install additional custom platforms, follow the steps below.

Installation with Environment Variable

  1. Extract the platform package to a suitable location if the platform package is a ZIP file.
  2. Set the environment variable:
    Define the PLATFORM_REPO_PATHS environment variable to point to the extracted directory path before launching Vitis tools. For example, in a Bash terminal:
    export PLATFORM_REPO_PATHS=<Platform_Path>

This setting applies to both the v++ command-line tool and the Vitis Unified IDE.

Adding Platforms in Vitis Unified IDE

  1. Extract the platform package to a suitable location if the platform package is a ZIP file.
  2. Set the platform path:
    1. Go to Vitis > Platform Repositories from the main menu.
    2. Click the + (Add) button.
    3. Browse and select the path to your platform directory.

Batch Mode with Vitis Python API

For batch operations, use the Vitis Python API to add custom platform repositories programmatically:
client.add_platform_repos(platform=["/platform/path"])

This method is particularly useful for automation and python script-based workflows.