Skip to content

Instantly share code, notes, and snippets.

@HunterLarco
Created April 24, 2020 19:49
Show Gist options
  • Save HunterLarco/b24a3c52cf7e3b2ea8cc29c5b34c1f10 to your computer and use it in GitHub Desktop.
Save HunterLarco/b24a3c52cf7e3b2ea8cc29c5b34c1f10 to your computer and use it in GitHub Desktop.
sudo apt-get -y install build-essential autoconf libtool pkg-config
sudo apt-get -y install libgflags-dev
if ! [[ -f ~/bin/grpc_cli ]]; then
pushd "$(mktemp -d)"
git clone https://github.com/grpc/grpc.git ./
git submodule update --init
make grpc_cli
mv ./bins/opt/grpc_cli ~/bin/grpc_cli
popd
fi
@ThomasLee94
Copy link

add this to my bashrc export PATH="$PATH:$HOME/bin"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment