Forrest logo
back to the apm tool

apm:tldr:78430

apm: Remove a package/theme.
$ apm remove ${package_name}
try on your machine

The command "apm remove ${package_name}" is used to uninstall or remove a package from Atom, which is a popular text editor.

  • "apm" stands for Atom Package Manager, which is a command-line tool used to manage packages in the Atom editor.
  • "remove" is the command used to uninstall or remove a package.
  • "${package_name}" is a placeholder representing the name of the package that you want to remove. You need to replace "${package_name}" with the actual name of the package you wish to uninstall from Atom.

For example, if you want to remove a package called "example-package", you would replace "${package_name}" with "example-package" in the command:

apm remove example-package

Once you execute this command, Atom Package Manager will remove the specified package from your Atom editor.

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 apm tool