docs/reference/cli/pixi/global/expose/add.md
Add exposed binaries from an environment to your global environment
--8<-- "docs/reference/cli/pixi/global/expose/add_extender:description"
pixi global expose add [OPTIONS] --environment <ENVIRONMENT> [MAPPING]...
<MAPPING></a>
: Add mapping which describe which executables are exposed. The syntax is exposed_name=executable_name, so for example python3.10=python. Alternatively, you can input only an executable_name and executable_name=executable_name is assumedMay be provided more than once.
--environment (-e) <ENVIRONMENT></a>
: The environment to which the binaries should be exposedrequired: true
--auth-file <AUTH_FILE></a>
: Path to the file containing the authentication token--concurrent-downloads <CONCURRENT_DOWNLOADS></a>
: Max concurrent network requests, default is 50--concurrent-solves <CONCURRENT_SOLVES></a>
: Max concurrent solves, default is the number of CPUs--pinning-strategy <PINNING_STRATEGY></a>
: Set pinning strategyoptions: semver, minor, major, latest-up, exact-version, no-pin
--pypi-keyring-provider <PYPI_KEYRING_PROVIDER></a>
: Specifies whether to use the keyring to look up credentials for PyPIoptions: disabled, subprocess
--run-post-link-scripts</a>
: Run post-link scripts (insecure)--no-symbolic-links</a>
: Disallow symbolic links during package installationenv: PIXI_NO_SYMBOLIC_LINKS
--no-hard-links</a>
: Disallow hard links during package installationenv: PIXI_NO_HARD_LINKS
--no-ref-links</a>
: Disallow ref links (copy-on-write) during package installationenv: PIXI_NO_REF_LINKS
--tls-no-verify</a>
: Do not verify the TLS certificate of the server--tls-root-certs <TLS_ROOT_CERTS></a>
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots) or 'system' (system store)env: PIXI_TLS_ROOT_CERTS
--use-environment-activation-cache</a>
: Use environment activation cache (experimental)Add exposed binaries from an environment to your global environment
Example:
pixi global expose add python310=python3.10 python3=python3 --environment myenvpixi global add --environment my_env pytest pytest-cov --expose pytest=pytest--8<-- "docs/reference/cli/pixi/global/expose/add_extender:example"