Forrest logo
back to the wapm tool

wapm:tldr:c4a40

wapm: Download a specific version of a package and add it to the list of dependencies in wapm.toml.
$ wapm install ${package_name}@${version}
try on your machine

The command "wapm install ${package_name}@${version}" is used to install a specific version of a package using the wapm package manager.

  • ${package_name} represents the name of the package you want to install.
  • ${version} represents the specific version of the package you want to install.

By including the package name and version with the "@" separator, you can specify the exact version of the package you want to install. This is useful when you need to ensure compatibility with certain features or dependencies provided by a specific version of the package.

For example, if you want to install package "foo" with version "1.2.3", the command would be: wapm install foo@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 wapm tool