Skip to content

Files

Latest commit

04ca484 · Jan 16, 2021

History

History
32 lines (22 loc) · 676 Bytes

dev-env-rust.md

File metadata and controls

32 lines (22 loc) · 676 Bytes

Setting up a Rust development environment

Install OpenSSL

Follow instructions for setting up OpenSSL. For Ubuntu users, the following command works.

sudo apt-get install pkg-config libssl-dev

Install Protobuf

Use following instructions to install the protobuf compiler on Ubuntu or similar Linux platforms.

$ wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.4/protobuf-all-3.11.4.tar.gz
$ tar xzf protobuf-all-3.11.4.tar.gz
$ cd protobuf-3.11.4
$ ./configure
$ make
$ sudo make install
$ sudo ldconfig

MacOS user can install with brew

$ brew install protobuf