2016-02-29 23:53:47 +08:00
---
page_title: Plugin installation
page_description: Plugin installation for Grafana
page_keywords: grafana, plugins, documentation
---
# Plugins
## Installing plugins
The easiest way to install plugins is by using the CLI tool grafana-cli which is bundled with grafana.
2016-03-01 17:42:49 +08:00
### Grafana plugin directory
On Linux systems the grafana-cli will assume that the grafana plugin directory is "/var/lib/grafana/plugins". Its possible to override the directory which grafana-cli will operate on by specifing the --path flag. On Windows systems this parameter have to be specified for every call.
### List available plugins
2016-02-29 23:53:47 +08:00
```
grafana-cli list-remove
```
2016-03-01 17:42:49 +08:00
### Install a plugin type
2016-02-29 23:53:47 +08:00
```
grafana-cli install < plugin-id >
```
2016-03-01 17:42:49 +08:00
### List installed plugins
2016-02-29 23:53:47 +08:00
```
grafana-cli ls
```
2016-03-01 17:42:49 +08:00
### Upgrade all installed plugins
2016-02-29 23:53:47 +08:00
```
grafana-cli upgrade-all
```
2016-03-01 17:42:49 +08:00
### Upgrade one plugin
```
grafana-cli upgrade < plugin-id >
```
### Remove one plugin
```
grafana-cli remove < plugin-id >
```