2022-02-10 22:53:50 +01:00
|
|
|
---
|
|
|
|
|
description: |
|
2025-01-29 16:14:35 -08:00
|
|
|
The `packer plugins` command group contains subcommands for managing Packer plugins.
|
|
|
|
|
page_title: packer plugins command reference
|
2022-02-10 22:53:50 +01:00
|
|
|
---
|
|
|
|
|
|
2025-01-29 16:14:35 -08:00
|
|
|
# `packer plugins` command reference
|
2022-02-10 22:53:50 +01:00
|
|
|
|
2025-01-29 16:14:35 -08:00
|
|
|
The `plugins` command group contains subcommands for installing, uninstalling, and viewing Packer plugins.
|
2022-02-10 22:53:50 +01:00
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
|
$ packer plugins -h
|
|
|
|
|
Usage: packer plugins <subcommand> [options] [args]
|
|
|
|
|
This command groups subcommands for interacting with Packer plugins.
|
|
|
|
|
|
|
|
|
|
Related but not under the "plugins" command :
|
|
|
|
|
|
|
|
|
|
- "packer init <path>" will install all plugins required by a config.
|
|
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
|
install Install latest Packer plugin [matching version constraint]
|
|
|
|
|
installed List all installed Packer plugin binaries
|
|
|
|
|
remove Remove Packer plugins [matching a version]
|
|
|
|
|
required List plugins required by a config
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Related
|
|
|
|
|
|
2023-01-27 11:47:08 -06:00
|
|
|
- [`packer init`](/packer/docs/commands/init) will install all required plugins.
|