From 3ff5caf786e666c988c3d74d65e399d95d1b7ae6 Mon Sep 17 00:00:00 2001 From: KlimentSerafimov Date: Mon, 23 May 2022 13:11:59 -0400 Subject: [PATCH] Add to readme install protobuf etcd (#1777) * Update installation instructions * Added libprotobuf-dev etcd to apt install Added "brew install protobuf etcd" to OSX installation instructions. Added "sudo apt install libprotobuf-dev etcd" to Linux installation instructions. Without these, cargo build complains. Figured out in collaboration with Bojan. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5dccb7724..8e8bf1a9b2 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Pageserver consists of: On Ubuntu or Debian this set of packages should be sufficient to build the code: ```text apt install build-essential libtool libreadline-dev zlib1g-dev flex bison libseccomp-dev \ -libssl-dev clang pkg-config libpq-dev +libssl-dev clang pkg-config libpq-dev libprotobuf-dev etcd ``` 2. [Install Rust](https://www.rust-lang.org/tools/install) @@ -52,9 +52,10 @@ make -j5 ``` #### building on OSX (12.3.1) -1. Install XCode +1. Install XCode and dependencies ``` xcode-select --install +brew install protobuf etcd ``` 2. [Install Rust](https://www.rust-lang.org/tools/install)