docs/reference/cli/pixi/global/install.md
Installs the defined packages in a globally accessible location and exposes their command line applications.
--8<-- "docs/reference/cli/pixi/global/install_extender:description"
pixi global install [OPTIONS] [PACKAGE]...
<PACKAGE></a>
: The dependency as names, conda MatchSpecsMay be provided more than once.
--path <PATH></a>
: The path to the local package--channel (-c) <CHANNEL></a>
: The channels to consider as a name or a url. Multiple channels can be specified by using this field multiple timesMay be provided more than once.
--platform (-p) <PLATFORM></a>
: The platform to install the packages for--environment (-e) <ENVIRONMENT></a>
: Ensures that all packages will be installed in the same environment--expose <EXPOSE></a>
: Add one or more 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.
--with <WITH></a>
: Add additional dependencies to the environment. Their executables will not be exposedMay be provided more than once.
--force-reinstall</a>
: Specifies that the environment should be reinstalled--no-shortcuts</a>
: Specifies that no shortcuts should be created for the installed packages--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)--git <GIT></a>
: The git url, e.g. https://github.com/user/repo.git--branch <BRANCH></a>
: The git branch--tag <TAG></a>
: The git tag--rev <REV></a>
: The git revision--subdir <SUBDIR></a>
: The subdirectory within the git repositoryInstalls the defined packages in a globally accessible location and exposes their command line applications.
Example:
pixi global install starship nushell ripgrep batpixi global install jupyter --with polarspixi global install --expose python3.8=python python=3.8pixi global install --environment science --expose jupyter --expose ipython jupyter ipython polars--8<-- "docs/reference/cli/pixi/global/install_extender:example"