2019-02-13 19:28:35 +00:00
|
|
|
---
|
|
|
|
title: Installing dependencies on Mac OS X
|
|
|
|
---
|
|
|
|
|
|
|
|
With [Homebrew](https://brew.sh/):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
brew update
|
|
|
|
|
2019-12-30 13:35:32 +00:00
|
|
|
brew install git llvm
|
2019-07-13 15:01:20 +00:00
|
|
|
brew link gettext --force
|
2019-02-13 19:28:35 +00:00
|
|
|
|
2019-07-13 15:01:20 +00:00
|
|
|
# Additionally, only for PostgreSQL
|
|
|
|
brew install postgres
|
2019-02-13 19:28:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Now that these dependencies have been installed, we need to install Rust which has a special installer.
|
|
|
|
|
2019-07-13 15:01:20 +00:00
|
|
|
<a class="action" href="/installation/deps/rust">Let's do it!</a>
|