Installation#

You can install the Radar Explorer Toolkit using the latest installer from the repository’s Releases page or install it from PyPI.

Install the toolkit using the installer#

Install the Radar Explorer Toolkit for your operating system using the latest installer:

To install the toolkit on Windows, follow these steps:

  1. Download the latest installer for Windows from the repository’s Releases page.

    The file is named Radar-Explorer-Toolkit-Installer-windows.exe.

  2. Run the installer.

  3. Search for Radar Explorer Toolkit and launch it.

The Radar Explorer Toolkit window opens.

Supported Linux operating systems are Ubuntu 24.04 and 22.04. To install the toolkit on a supported Ubuntu version, follow these steps:

  1. Update the apt-get repository and install required packages with sudo privileges:

    sudo apt-get update -y
    sudo apt-get install wget gnome libffi-dev libssl-dev libsqlite3-dev libxcb-xinerama0 build-essential -y
    
  2. Download and install the zlib library:

    wget https://zlib.net/current/zlib.tar.gz
    tar xvzf zlib.tar.gz
    cd zlib-*
    make clean
    ./configure
    make
    sudo make install
    
  3. Download the latest Radar Explorer Toolkit installer for Ubuntu from the repository’s Releases page.

    The file is named Radar-Explorer-Toolkit-Installer-ubuntu_*.zip.

  4. Run this command in the terminal:

    unzip Radar-Explorer-Toolkit-ubuntu_*.zip
    ./installer.sh
    
  5. Search for Radar Explorer Toolkit and launch it.

The Radar Explorer Toolkit window opens.

Uninstall the toolkit#

To uninstall the Radar Explorer Toolkit, follow these steps:

  1. From the toolkit’s menu, select File > Uninstall.

  2. Click Uninstall.

Install the toolkit with Python#

Install the Radar Explorer Toolkit from PyPI like any other open source Python package. You can install both the backend (AI) and user interface (UI) methods or only the backend methods.

Note

  • If you have an existing virtual environment, skip step 1.

  • If you have already installed the toolkit in your virtual environment, skip step 2.

  1. Create and activate a new Python virtual environment:

    # Create a virtual environment
    python -m venv .venv
    
    # Activate it in a POSIX system
    source .venv/bin/activate
    
    # Activate it in a Windows CMD environment
    .venv\Scripts\activate.bat
    
    # Activate it in Windows PowerShell
    .venv\Scripts\ActivateT.op si1
    
  2. To install both the backend and UI methods from the GitHub repository:

    python -m pip install ansys-aedt-toolkits-radar-explorer_explorer[all]
    
  3. To install only the backend methods:

    pip install ansys-aedt-toolkits-radar_explorer
    
  4. If you installed both the backend and UI methods, launch the toolkit:

    python .venv\Lib\site-packages\ansys\aedt\toolkits\radar_explorer\run_toolkit.py
    
    UI of the toolkit opened from the console, **Settings** tab

Note

If you are a developer wanting to contribute to the Radar Explorer Toolkit, see Contribute.