Last active
October 18, 2015 06:59
-
-
Save kholidfu/6a641b0b34bf4742a315 to your computer and use it in GitHub Desktop.
How to Install GRPCIO di Ubuntu 15.04 Vivid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install grpcio | |
# ===== | |
sudo apt-get install python-dev protobuf-compiler python-pip unzip dh-autoreconf | |
sudo pip install virtualenv | |
git clone https://github.com/grpc/grpc | |
cd grpc && git submodule update --init | |
# cd third_party/protobuf && ./autogen.sh | |
cd ~/grpc && make | |
CONFIG=opt tools/run_tests/build_python.sh 2.7 | |
# get process id for vagrant virtualbox | |
ps aux | grep -i virtualbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment