Skip to content

pixi reinstall#

About#

Re-install an environment, both updating the lockfile and re-installing the environment

Usage#

pixi reinstall [OPTIONS] [PACKAGE]...

Arguments#

  • <PACKAGE>
    Specifies the package that should be reinstalled. If no package is given, the whole environment will be reinstalled
    May be provided more than once.

Config Options#

Update Options#

  • --frozen
    Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file
    env: PIXI_FROZEN
  • --locked
    Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file
    env: PIXI_LOCKED
  • --environment (-e) <ENVIRONMENT>
    The environment to install
    May be provided more than once.
  • --all (-a)
    Install all environments

Global Options#

Description#

Re-install an environment, both updating the lockfile and re-installing the environment.

This command reinstalls an environment, if the lockfile is not up-to-date it will be updated. If packages are specified, only those packages will be reinstalled. Otherwise the whole environment will be reinstalled.

pixi reinstall only re-installs one environment at a time, if you have multiple environments you can select the right one with the --environment flag. If you don't provide an environment, the default environment will be re-installed.

If you want to re-install all environments, you can use the --all flag.