Skip to content

Instantly share code, notes, and snippets.

@plembo
Last active August 19, 2018 23:41
Show Gist options
  • Save plembo/49ad426aa7641f574db3cf6fd5dee1c0 to your computer and use it in GitHub Desktop.
Save plembo/49ad426aa7641f574db3cf6fd5dee1c0 to your computer and use it in GitHub Desktop.
List Atom Packages Installed

List Atom Packages Installed

To list all Atom packages installed by a user, run:

apm list --packages --installed

(apm is the "Atom Package Manager")

The response will be look somethng like this:

├── [email protected]
├── [email protected]
├── [email protected] (disabled)
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

Some packages have prerequisites. For example, linter-flake needs flake8 (installed with "pip3 install flake8"). Likewise, linter-eslint needs eslint and eslint-plugin-nodejs ("npm i -g eslint eslint-plugin-nodejs"). The gui package installer will prompt for these, but apm will not. Always check the package doc before installing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment