Forrest logo
back to the choco tool

choco-install:tldr:7a3c0

choco-install: Install a specific version of a package.
$ choco install ${package} --version ${version}
try on your machine

This command is using the "choco" command-line tool to install a specific version of a package using Chocolatey package manager.

  • The command starts with "choco install", which is the command to install a package using Chocolatey.
  • "${package}" is a placeholder for the name of the package you want to install. Replace it with the actual package name.
  • "--version" is an option used to specify the version of the package you want to install.
  • "${version}" is a placeholder for the specific version number you want to install. Replace it with the actual version number.

For example, if you want to install a package named "example-package" with version 1.2.3, you would replace "${package}" with "example-package" and "${version}" with "1.2.3", resulting in the command: "choco install example-package --version 1.2.3".

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the choco tool