﻿---
title: Install multiple plugins
description: Install several Elasticsearch plugins in one elasticsearch-plugin command on self-managed deployments.
url: https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/7959/deploy-manage/plugins-and-bundles/self-managed/install-multiple-plugins
products:
  - Elasticsearch
applies_to:
  - Self-managed Elastic deployments: Generally available
---

# Install multiple plugins
Multiple plugins can be installed in one invocation:
```sh
sudo bin/elasticsearch-plugin install [plugin_id] [plugin_id] ... [plugin_id]
```

Each `plugin_id` can be any valid form for installing a single plugin (for example, the name of a core plugin, or a custom URL).
For example, to install the core [ICU plugin](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch-plugins/analysis-icu):
```sh
sudo bin/elasticsearch-plugin install analysis-icu
```

This command installs the versions of the plugins that match your Elasticsearch version. The installation is treated as a transaction: all of the plugins are installed, or none of them are installed if any installation fails.