Configuration
The ESP-IDF Installation Manager supports configuration through both its graphical interface and command line options. Choose the method that best suits your needs:
- GUI Configuration: Configure through the graphical interface
- CLI Configuration: Configure using command line arguments or configuration files
Both methods allow you to:
- Select ESP-IDF versions
- Choose installation paths
- Configure download mirrors
- Select target platforms
- Save configurations for future use
Configuration Priority
The configuration priority order is:
- Command line arguments (highest)
- Environment variables
- Configuration files
- Default values (lowest)
Using Configuration Files
Configuration files can be used with both the GUI and CLI versions of the installer:
GUI Usage
In the GUI, you can provide a configuration file, just use the “Load Configuration” button in the initial screen or drag&drop the file onto the installer
CLI Usage
With the CLI, you can specify a configuration file using the --config
argument:
eim --config path/to/config.toml
Configuration File Format
The installer uses TOML format for configuration files. Here is an example:
path = "/Users/Username/.espressif"
esp_idf_json_path = "/Users/Username/.espressif/tools"
tool_download_folder_name = "dist"
tool_install_folder_name = "tools"
target = ["all"]
idf_versions = ["v5.3.2"]
tools_json_file = "tools/tools.json"
idf_tools_path = "tools/idf_tools.py"
config_file_save_path = "/Users/Username/Downloads/config.toml"
non_interactive = false
wizard_all_questions = false
mirror = "https://github.com"
idf_mirror = "https://github.com"
recurse_submodules = false
install_all_prerequisites = false
After completing installation through either the GUI wizard or CLI, you have the option to save your configuration for future use. This saved configuration can be shared with other users to replicate the same installation setup.