'Install an older version of a package on Atom Editor

How can I install older versions of a package on Atom Editor? In this case, I'm trying to install an older version of Remote-FTP, and there are older versions of the package here, but no way to specify which version to choose when you install it. Can you help?



Solution 1:[1]

From the Atom docs on Packages:

You can also install packages by using the apm install command:

  • apm install <package_name> to install the latest version.
  • apm install <package_name>@<package_version> to install a specific version.

For example apm install [email protected] installs the 0.1.5 release of the Emmet package.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1