github.com/hashicorp/packer@v1.14.3/website/content/docs/commands/plugins/index.mdx (about) 1 --- 2 description: | 3 The `packer plugins` command group contains subcommands for managing Packer plugins. 4 page_title: packer plugins command reference 5 --- 6 7 # `packer plugins` command reference 8 9 The `plugins` command group contains subcommands for installing, uninstalling, and viewing Packer plugins. 10 11 ```shell-session 12 $ packer plugins -h 13 Usage: packer plugins <subcommand> [options] [args] 14 This command groups subcommands for interacting with Packer plugins. 15 16 Related but not under the "plugins" command : 17 18 - "packer init <path>" will install all plugins required by a config. 19 20 Subcommands: 21 install Install latest Packer plugin [matching version constraint] 22 installed List all installed Packer plugin binaries 23 remove Remove Packer plugins [matching a version] 24 required List plugins required by a config 25 ``` 26 27 ## Related 28 29 - [`packer init`](/packer/docs/commands/init) will install all required plugins.