CLI Commands

The ESP-IDF Installation Manager provides a comprehensive command-line interface with various commands to manage your ESP-IDF installations. This document details all available commands and their usage.

Available Commands

eim [OPTIONS] [COMMAND]

Global Options

These options can be used with any command:

Commands Overview

CommandDescription
installInstall ESP-IDF versions
wizardRun the ESP-IDF Installer Wizard (interactive mode)
listList installed ESP-IDF versions
selectSelect an ESP-IDF version as active
renameRename a specific ESP-IDF version
removeRemove a specific ESP-IDF version
purgePurge all ESP-IDF installations
importImport existing ESP-IDF installation using tools_set_config.json
discoverDiscover available ESP-IDF versions (not implemented yet)

Command Details

Install Command

Non-interactive installation of ESP-IDF versions. This command runs in non-interactive mode by default.

eim install [OPTIONS]

Options:

Wizard Command

Run the interactive ESP-IDF Installer Wizard.

eim wizard [OPTIONS]

The wizard command accepts the same options as the install command but runs in interactive mode, guiding you through the installation process with a series of prompts.

List Command

List all installed ESP-IDF versions.

eim list

This command displays all ESP-IDF versions installed on your system, with the currently selected version marked.

Select Command

Select an ESP-IDF version as active.

eim select [VERSION]

If VERSION is not provided, the command will prompt you to select from available versions. Selecting version means setting the idfSelectedId in the eim_idf.json file. This is used by the IDEs to know which of the IDF versions you prefer to use.

Rename Command

Rename a specific ESP-IDF version.

eim rename [VERSION] [NEW_NAME]

If VERSION is not provided, the command will prompt you to select from available versions. If NEW_NAME is not provided, the command will prompt you to enter a new name.

Remove Command

Remove a specific ESP-IDF version.

eim remove [VERSION]

If VERSION is not provided, the command will prompt you to select from available versions.

Purge Command

Purge all ESP-IDF installations.

eim purge

This command removes all known ESP-IDF installations from your system.

Import Command

Import an existing ESP-IDF installation using a tools_set_config.json file.

eim import [PATH]

If PATH is not provided, the command will inform you that no config file was specified.

Discover Command

Discover available ESP-IDF versions (not implemented yet).

eim discover

This command is planned to discover ESP-IDF installations on your system but is not yet implemented.

Examples

# Install ESP-IDF v5.3.2 non-interactively (default behavior) eim install -i v5.3.2 # Install ESP-IDF v5.3.2 in interactive mode eim install -i v5.3.2 -n false # Run the interactive wizard eim wizard # List installed versions eim list # Select a specific version eim select v5.3.2 # Rename a version eim rename v5.3.2 "ESP-IDF 5.3.2 Stable" # Remove a specific version eim remove v5.3.2 # Purge all installations eim purge # Import from a config file eim import /path/to/tools_set_config.json