The construct.yaml file is the primary mechanism for controlling
the output of the Constructor package. The file contains a list of
key/value pairs in the standard YAML format.
Each configuration option is listed in its own subsection below.
Constructor employs the Selector enhancement of the YAML format
first employed in the
conda-build
project. Selectors are specially formatted YAML comments that Constructor
uses to customize the specification for different platforms. The precise
syntax for selectors is described in
this section
of the conda-build documentation. The list of selectors available
for use in Constructor specs is given in the section
Available selectors below.
Finally, construct.yaml is parsed as a jinja2 template and so any valid
jinja2 templating directives may be used. The current shell environment
is available as the jinja2 variable environ. As an example, setting the
version key from an environment variable called VERSION would look like:
version: {{ environ["VERSION"] }}. Note that the special
environment variables available in meta.yaml when running conda-build
are not available here.
Note: This content is also available in the CLI as
constructor --help-construct
required: yes
type: string
Name of the installer. Names may be composed of letters, numbers, underscores, dashes, and periods, but may not begin or end with a dash or period.
required: yes
type: string
Version of the installer. Versions may be composed of letters, numbers, underscores, dashes, and periods, but may not begin or end with a dash or period.
required: no
type: list
The conda channels from which packages are retrieved. At least one channel must
be supplied, either in channels or channels_remap.
See notes in channels_remap for details about local channels.
required: no
type: list
A list of src/dest channel URL pairs. When building the installer, conda will
use the src channels to solve and fetch the packages. However, the resulting
installation will see the packages as coming from the dest equivalent.
This allows an installer to be built against a different set of channels than
will be present when the installer is actually used. Example use:
channels_remap:
- src: file:///tmp/a3/conda-bld # [unix]
dest: https://repo.anaconda.com/pkgs/main # [unix]
- src: file:///D:/tmp/a3/conda-bld # [win]
dest: https://repo.anaconda.com/pkgs/main # [unix]At least one channel must be supplied, either in channels or channels_remap.
required: no
types: list, string
A list of package specifications; e.g. python 2.7*, pyzmq or numpy >=1.8.
The specifications are identical in form and purpose to those that would be
included in a conda create --file command. Packages may also be specified
by an exact URL; e.g.,
https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2.
This key can also take a str pointing to a requirements file with the same syntax.
Note: constructor relies on conda's Python API to solve the passed
specifications. You can still set the CONDA_SOLVER environment variable
to override system-wide settings for constructor. If you are using
constructor from a non-base environment, make sure the
configured solver plugin is also installed in that environment.
required: no
types: list, string
A list of package specifications to be recorded as "user-requested" for the
initial environment in conda's history file. This information is used by newer
versions of conda to better filter its package choices on subsequent installs;
for example, if python=3.6 is included, then conda will always seek versions
of packages compatible with Python 3.6. If this is option is not provided, it
will be set equal to the value of specs.
required: no
type: list
A list of virtual packages that must be satisfied at install time. Virtual
packages must start with __. For example, __osx>=11 or __glibc>=2.24.
These specs are dry-run solved offline by the bundled --conda-exe binary.
In SH installers, __glibc>=x.y and __osx>=x.y specs can be checked with
Bash only. In PKG installers, __osx specs can be checked natively without
the solver being involved as long as only >=, < or , are used.
required: no
type: list
A list of package names to be excluded after the specs have been resolved.
For example, you can say that readline should be excluded, even though it
is contained as a result of resolving the specs for python 2.7.
required: no
type: list
A list of packages with menu items to be installed. The packages must have
necessary metadata in Menu/<package name>.json). By default, all menu items
found in the installation will be created; supplying this list allows a
subset to be selected instead. If an empty list is supplied, no shortcuts will
be created.
If all environments (extra_envs included) set menu_packages to an empty list,
no UI options about shortcuts will be offered to the user.
Note: This option is not fully implemented when micromamba is used as
the --conda-exe binary. The only accepted value is an empty list ([]).
required: no
type: boolean
By default, constructor will warn you when adding packages with duplicate files in them. Setting this option to false will raise an error instead.
required: no
types: boolean, string
Obsolete. The current version of constructor relies on the standalone conda executable for its installation behavior. This option is now ignored with a warning.
required: no
type: string
Name of the environment to construct from. If this option is present, the
specs argument will be ignored. Using this option allows the user to
curate the enviromment interactively using standard conda commands, and
run constructor with full confidence that the exact environment will be
reproduced.
required: no
type: string
Path to an environment file (TXT or YAML) to construct from. If this option
is present, the specs argument will be ignored. Instead, constructor will
call conda to create a temporary environment, constructor will build and
installer from that, and the temporary environment will be removed.
This ensures that constructor is using the precise local conda configuration
to discover and install the packages. The created environment MUST include
python.
Read notes about the solver in the specs field.
required: no
type: string
File type extension for the files to be transmuted into. Currently supports only '.conda'. See conda-package-handling for supported extension names. If left empty, no transmuting is done.
required: no
type: list
If this value is provided as well as write_condarc, then the channels
in this list will be included as the value of the default_channels:
option in the environment's .condarc file. This will have an impact
only if conda is included in the environmnent.
required: no
type: string
The channel alias that would be assumed for the created installer (only useful if it includes conda).
required: no
type: dictionary
Create more environments in addition to the default base provided by specs,
environment or environment_file. This should be a map of str (environment
name) to a dictionary of options:
specs(list of str): which packages to install in that environmentenvironment(str): same as global option, for this envenvironment_file(str): same as global option, for this envchannels(list of str): using these channels; if not provided, the global value is used. To override inheritance, set it to an empty list.channels_remap(list of str): same as global option, for this env; if not provided, the global value is used. To override inheritance, set it to an empty list.user_requested_specs(list of str): same as the global option, but for this env; if not provided, global value is not usedmenu_packages(list of str): same as the global option, for this env; if not provided, the global value is not used.
Notes:
ignore_duplicate_fileswill always be consideredTrueifextra_envsis in use.condaneeds to be present in thebaseenvironment (viaspecs)- If a global
excludeoption is used, it will have an effect on the environments created byextra_envstoo. For example, if the global environment excludestk, none of the extra environments will have it either. Unlike the global option, an error will not be thrown if the excluded package is not found in the packages required by the extra environment. To override the globalexcludevalue, use an empty list[].
required: no
type: boolean
Whether to register the environments created by the installer (both base and extra_envs)
in ~/.conda/environments.txt. Only compatible with conda-standalone >=23.9. Defaults to True.
required: no
type: string
The filename of the installer being created. If not supplied, a reasonable
default will determined by the name, version, platform, and installer type.
required: no
types: string, list
The type of the installer being created. Possible values are:
sh: shell-based installer for Linux or macOS;pkg: macOS GUI installer built with Apple'spkgbuildexe: Windows GUI installer built with NSIS
The default type is sh on Linux and macOS, and exe on Windows. A special
value of all builds both sh and pkg installers on macOS, as well
as sh on Linux and exe on Windows.
Notes for silent mode /S on Windows EXEs:
- NSIS Silent mode will not print any error message, but will silently abort the installation.
If needed, NSIS log-builds can be used to print to
%PREFIX%\install.log, which can be searched for::error::strings. Pre- and post- install scripts will only throw an error if the environment variableNSIS_SCRIPTS_RAISE_ERRORSis set. - The
/Dflag can be used to specify the target location. It must be the last argument in the command and should NEVER be quoted, even if it contains spaces. For example:CMD.EXE /C START /WAIT myproject.exe /S /D=C:\path with spaces\my project.
required: no
type: string
Path to the license file being displayed by the installer during the install process. It must be plain text (.txt) for shell-based installers. On PKG, .txt, .rtf and .html are supported. On Windows, .txt and .rtf are supported.
required: no
type: boolean
If False (default), the package cache in the pkgs subdirectory is removed
when the installation process is complete. If True, this subdirectory and
its contents are preserved. If keep_pkgs is False, Unix .sh and Windows .msi
installers offer a command-line option (-k and /KeepPkgCache, respectively)
to preserve the package cache.
required: no
type: boolean
Only affects .sh installers. If False (default), the installer launches
an interactive wizard guiding the user through the available options. If
True, the installer runs automatically as if -b was passed.
required: no
type: string
By default, the MacOS pkg installer isn't signed. If an identity name is specified
using this option, it will be used to sign the installer with Apple's productsign.
Note that you will need to have a certificate (usually an "Installer certificate")
and the corresponding private key, together called an 'identity', in one of your
accessible keychains. Common values for this option follow this format
Developer ID Installer: Name of the owner (XXXXXX).
required: no
type: string
If the pkg installer is going to be signed with signing_identity_name, you
can also prepare the bundle for notarization. This will use Apple's codesign
to sign conda.exe. For this, you need an "Application certificate" (different from the
"Installer certificate" mentioned above). Common values for this option follow the format
Developer ID Application: Name of the owner (XXXXXX).
required: no
type: string
The tool used to sign Windows installers. Must be one of: azuresigntool, signtool.
Some tools require signing_certificate to be set.
Defaults to signtool if signing_certificate is set.
Additional environment variables may need to be used to configure signing.
See the documentation for details:
https://conda.github.io/constructor/howto/#signing-exe-installers
required: no
type: string
On Windows only, set this key to the path of the certificate file to be used
with the windows_signing_tool.
required: no
types: boolean, string
Obsolete. The current version of constructor relies on the standalone conda executable for its installation behavior. This option is now ignored with a warning.
required: no
type: boolean
By default, no .condarc file is written. If set, a .condarc file is written to
the base environment if there are any channels or conda_default_channels is set.
required: no
types: dictionary, string
If set, a .condarc file is written to the base environment containing the contents
of this value. The value can either be a string (likely a multi-line string) or
a dictionary, which will be converted to a YAML string for writing. Note: if this
option is used, then all other options related to the construction of a .condarc
file (write_condarc, conda_default_channels, etc.) are ignored.
required: no
type: string
Name of the company/entity who is responsible for the installer.
required: no
type: string
Unique identifier for this package, formatted with reverse domain notation. This is
used internally in the PKG installers to handle future updates and others. If not
provided, it will default to io.continuum. (MacOS only)
required: no
type: string
Application name in the Windows "Programs and Features" control panel.
Defaults to ${NAME} ${VERSION} (Python ${PYVERSION} ${ARCH}).
required: no
type: dictionary
Dictionary of additional environment variables to be made available to
the pre_install and post_install scripts, in the form of VAR:VALUE
pairs. These environment variables are in addition to those in the
post_install section above and take precedence in the case of name
collisions.
On Unix the variable values are automatically single quoted, allowing
you to supply strings with spaces, without needing to worry about
escaping. As a consequence, string interpolation is disabled: if you
need string interpolation, you can apply it in the
pre_install/post_install script(s). If you need to include single quotes
in your value, you can escape them by replacing each single quote with
'''.
On Windows, single quotes and double quotes are not supported.
Note that the # (hash) character cannot be used as it denotes yaml comments for all platforms.
required: no
type: string
Path to a pre-install script, run after the package cache has been set, but
before the files are linked to their final locations. As a result, you should
only rely on tools known to be available on most systems (e.g. bash, cmd,
etc). See post_install for information about available environment variables.
required: no
type: string
A description of the purpose of the supplied pre_install script. If this
string is supplied and non-empty, then the Windows and macOS GUI installers
will display it along with checkbox to enable or disable the execution of the
script. If this string is not supplied, it is assumed that the script
is compulsory and the option to disable it will not be offered.
This option has no effect on SH installers.
required: no
type: string
Path to a post-install script. Some notes:
- For Unix
.shinstallers, the shebang line is respected if present; otherwise, the script is run by the POSIX shellsh. Note that the use of a shebang can reduce the portability of the installer. The installation path is available as${PREFIX}. Installer metadata is available in the${INSTALLER_NAME},${INSTALLER_VER},${INSTALLER_PLAT}environment variables.${INSTALLER_TYPE}is set toSH. - For PKG installers, the shebang line is respected if present;
otherwise,
bashis used. The same variables mentioned forshinstallers are available here.${INSTALLER_TYPE}is set toPKG. - For Windows
.exeinstallers, the script must be a.batfile. Installation path is available as%PREFIX%. Metadata about the installer can be found in the%INSTALLER_NAME%,%INSTALLER_VER%,%INSTALLER_PLAT%environment variables.%INSTALLER_TYPE%is set toEXE.
If necessary, you can activate the installed base environment like this:
- Unix:
source "$PREFIX/etc/profile.d/conda.sh" && conda activate "$PREFIX" - Windows:
call "%PREFIX%\Scripts\activate.bat"
required: no
type: string
A description of the purpose of the supplied post_install script. If this
string is supplied and non-empty, then the Windows and macOS GUI installers
will display it along with checkbox to enable or disable the execution of the
script. If this string is not supplied, it is assumed that the script
is compulsory and the option to disable it will not be offered.
This option has no effect on SH installers.
required: no
type: string
Path to a pre uninstall script. This is only supported for on Windows,
and must be a .bat file. Installation path is available as %PREFIX%.
Metadata about the installer can be found in the %INSTALLER_NAME%,
%INSTALLER_VER%, %INSTALLER_PLAT% environment variables.
%INSTALLER_TYPE% is set to EXE.
required: no
type: string
Set default install prefix. On Linux, if not provided, the default prefix
is ${HOME}/<NAME> (or, if HOME is not set, /opt/<NAME>). On Windows,
this is used only for "Just Me" installation; for "All Users" installation,
use the default_prefix_all_users key. If not provided, the default prefix
is %USERPROFILE%\<NAME>. Environment variables will be expanded at
installation time.
required: no
type: string
Set default installation prefix for domain user. If not provided, the
installation prefix for domain user will be %LOCALAPPDATA%\<NAME>.
By default, it is different from the default_prefix value to avoid installing
the distribution in the roaming profile. Environment variables will be expanded
at installation time. Windows only.
required: no
type: string
Set default installation prefix for All Users installation. If not provided,
the installation prefix for all users installation will be
%ALLUSERSPROFILE%\<NAME>. Environment variables will be expanded at installation
time. Windows only.
required: no
type: string
Default installation subdirectory in the chosen volume. In PKG installers,
default installation locations are configured differently. The user can choose
between a "Just me" installation (which would result in ~/<PKG_NAME>) or another
volume (which defaults to <VOLUME>/<PKG_NAME>). If you want a different default,
you can add a middle component with this option, let's call it location. It would
result in these default values: ~/<LOCATION>/<PKG_NAME> for "Just me",
<VOLUME>/<LOCATION>/<PKG_NAME> for custom volumes. For example, setting this option
to /Library in a "Just me" installation will give you ~/Library/<PKG_NAME>.
Internally, this is passed to pkgbuild --install-location.
macOS only.
required: no
type: dictionary
The domains the package can be installed into. For a detailed explanation, see:
https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html
constructor defaults to enable_anywhere=true and enable_currentUserHome=true.
enable_localSystem should not be set to true unless default_location_pkg is set as well.
macOS only.
required: no
type: string
Internal identifier for the installer. This is used in the build prefix and will
determine part of the default location path. Combine with default_location_pkg
for more flexibility. If not provided, the value of name will be used. (MacOS only)
required: no
type: string
Error message that will be shown if the installation path already exists.
You cannot use double quotes or newlines. The placeholder {CHOSEN_PATH} is
available and set to the destination causing the error. Defaults to:
'{CHOSEN_PATH}' already exists. Please, relaunch the installer and choose another location in the Destination Select step.
(MacOS only)
required: no
type: boolean
Whether to show UI notifications on PKG installers. On large installations, the progress bar reaches ~90% very quickly and stays there for a long time. This might look like the installer froze. This option enables UI notifications so the user receives updates after each command executed by the installer. (macOS only)
required: no
type: string
Path to an image in any common image format (.png, .jpg, .tif, etc.)
to be used as the welcome image for the Windows and PKG installers.
The image is re-sized to 164 x 314 pixels on Windows and 1227 x 600 on Macos.
By default, an image is automatically generated on Windows. On MacOS, Anaconda's
logo is shown if this key is not provided. If you don't want a background on
PKG installers, set this key to "" (empty string).
required: no
type: string
Like welcome_image for Windows, re-sized to 150 x 57 pixels.
required: no
type: string
Like welcome_image for Windows, re-sized to 256 x 256 pixels.
required: no
type: string
The color of the default images (when not providing explicit image files)
used on Windows. Possible values are red, green, blue, yellow.
The default is blue.
required: no
type: string
If welcome_image is not provided, use this text when generating the image
(Windows and PKG only). Defaults to name on Windows.
required: no
type: string
If header_image is not provided, use this text when generating the image
(Windows only). Defaults to name.
required: no
type: boolean
Add an option to the installer so the user can choose whether to run conda init
after the install. See also initialize_by_default.
required: no
type: boolean
Whether to add the installation to the PATH environment variable. The default
is true for GUI installers (msi, pkg) and False for shell installers. The user
is able to change the default during interactive installation. NOTE: For Windows,
AddToPath is disabled when InstallationType=AllUsers.
required: no
type: boolean
Whether to offer the user an option to register the installed Python instance as the system's default Python. (Windows only)
required: no
type: boolean
Default choice for whether to register the installed Python instance as the system's default Python. The user is still able to change this during interactive installation. (Windows only).
required: no
type: boolean
Check the length of the path where the distribution is installed to ensure nodejs can be installed. Raise a message to request shorter path (less than 46 character) or enable long path on windows > 10 (require admin right). Default is True. (Windows only).
Read notes about the particularities of Windows silent mode /S in the
installer_type documentation.
required: no
type: boolean
Check if the path where the distribution is installed contains spaces. Default is True. To allow installations with spaces, change to False. Note that:
- A recent conda-standalone (>=22.11.1) or equivalent is needed for full support.
condacannot be present in thebaseenvironment
Read notes about the particularities of Windows silent mode /S in the
installer_type documentation.
required: no
type: string
If nsis_template is not provided, constructor uses its default
NSIS template. For more complete customization for the installation experience,
provide an NSIS template file. (Windows only).
required: no
type: string
If installer_type is pkg on MacOS, this message will be
shown before the license information, right after the introduction.
File can be plain text (.txt), rich text (.rtf) or HTML (.html). If
both welcome_file and welcome_text are provided, welcome_file takes precedence.
(MacOS only).
If the installer is for windows and welcome file type is nsi, it will use the nsi script to add in extra pages before the installer begins the installation process.
required: no
type: string
If installer_type is pkg on MacOS, this message will be
shown before the license information, right after the introduction.
If this key is missing, it defaults to a message about Anaconda Cloud.
You can disable it altogether so it defaults to the system message
if you set this key to "" (empty string).
(MacOS only).
required: no
type: string
If installer_type is pkg on MacOS, this message will be
shown before the license information, right after the welcome screen.
File can be plain text (.txt), rich text (.rtf) or HTML (.html). If
both readme_file and readme_text are provided, readme_file takes precedence.
(MacOS only).
required: no
type: string
If installer_type is pkg on MacOS, this message will be
shown before the license information, right after the welcome screen.
If this key is missing, it defaults to a message about Anaconda Cloud.
You can disable it altogether if you set this key to "" (empty string).
(MacOS only).
required: no
type: string
If installer_type is pkg on MacOS, this message will be
shown at the end of the installer upon success. File can be
plain text (.txt), rich text (.rtf) or HTML (.html). If both
conclusion_file and conclusion_text are provided,
conclusion_file takes precedence. (MacOS only).
If the installer is for windows and conclusion file type is nsi, it will use the nsi script to add in extra pages and the conclusion file at the end of the installer.
required: no
type: string
A message that will be shown at the end of the installer upon success. The behaviour is slightly different across installer types:
- PKG: If this key is missing, it defaults to a message about Anaconda Cloud.
You can disable it altogether so it defaults to the system message if you set this
key to
""(empty string). - EXE: The first line will be used as a title. The following lines will be used as text. (macOS PKG and Windows only).
required: no
type: list
Extra, non-packaged files that should be added to the installer. If provided as relative
paths, they will be considered relative to the directory where construct.yaml is.
This setting can be passed as a list of:
str: each found file will be copied to the root prefixMapping[str, str]: map of path in disk to path in prefix.
required: no
type: list
Temporary files that could be referenced in the installation process (i.e. customized
welcome_file and conclusion_file (see above)) . Should be a list of
file paths, relative to the directory where construct.yaml is. In Windows, these
files will be copied into a temporary folder, the NSIS $PLUGINSDIR, during
install process (Windows only).
Supports the same values as extra_files.
required: no
type: list
Additional artifacts to be produced after building the installer. It expects either a list of strings or single-key dictionaries: Allowed keys are:
hash: The hash of the installer files.algorithm(str or list): The hash algorithm. Must be amonghashlib's available algorithms: https://docs.python.org/3/library/hashlib.html#hashlib.algorithms_available
info.json: The internalinfoobject, serialized to JSON. Takes no options.pkgs_list: The list of packages contained in a given environment. Options:env(optional, default=base): Name of an environment inextra_envsto export.
licenses: Generate a JSON file with the licensing details of all included packages. Options:include_text(optional bool, default=False): Whether to dump the license text in the JSON. If false, only the path will be included.text_errors(optional str, default=None): How to handle decoding errors when reading the license text. Only relevant if include_text is True. Any str accepted by open()'s 'errors' argument is valid. See https://docs.python.org/3/library/functions.html#open.
aarch64arm64armv7llinuxlinux32linux64osxppc64les390xunixwinwin32win64x86x86_64
Specify which platform (CONDA_SUBDIR) to build for via the --platform argument. If provided, this argument must be formated as <platform>-<architecture>, e.g.:
linux-64linux-aarch64linux-ppc64lelinux-s390xwin-64osx-64osx-arm64