mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 23:53:10 +08:00

* One of the homebrew folks first asked for a wrapper script to make launching grafana easier. Later I was asked to remove it and submit it upstream, so here it is. * add instructions for installing grafana HEAD from git with homebrew back to the docs
41 lines
703 B
Markdown
41 lines
703 B
Markdown
---
|
|
page_title: Installing on Mac OS X
|
|
page_description: Grafana Installation guide for Mac OS X
|
|
page_keywords: grafana, installation, mac, osx, guide
|
|
---
|
|
|
|
# Installing on Mac
|
|
|
|
Installation can be done using [homebrew](http://brew.sh/)
|
|
|
|
Install latest stable:
|
|
|
|
```
|
|
brew update
|
|
brew install grafana
|
|
```
|
|
|
|
To start grafana look at the command printed after the homebrew install completes.
|
|
|
|
To upgrade use the reinstall command
|
|
|
|
```
|
|
brew update
|
|
brew reinstall grafana
|
|
```
|
|
|
|
-------------
|
|
|
|
You can also install the latest unstable grafana from git:
|
|
|
|
|
|
```
|
|
brew install --HEAD grafana/grafana/grafana
|
|
```
|
|
|
|
To upgrade grafana if you've installed from HEAD:
|
|
|
|
```
|
|
brew reinstall --HEAD grafana/grafana/grafana
|
|
```
|