mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 22:41:40 -04:00
30 lines
938 B
Plaintext
30 lines
938 B
Plaintext
---
|
|
description: |
|
|
The `packer plugins` command group contains subcommands for managing Packer plugins.
|
|
page_title: packer plugins command reference
|
|
---
|
|
|
|
# `packer plugins` command reference
|
|
|
|
The `plugins` command group contains subcommands for installing, uninstalling, and viewing Packer plugins.
|
|
|
|
```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
|
|
|
|
- [`packer init`](/packer/docs/commands/init) will install all required plugins.
|