From 89fccb7d7a2aba92ac45dbd577dd7f07568696ba Mon Sep 17 00:00:00 2001 From: Nathaniel Manista Date: Thu, 26 Feb 2015 20:21:31 +0000 Subject: [PATCH] Simple installation instructions for Python. --- src/python/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/python/README.md b/src/python/README.md index 0ead86b91e8..06ef1a0f836 100755 --- a/src/python/README.md +++ b/src/python/README.md @@ -37,3 +37,19 @@ Testing ``` $ tools/run_tests/run_python.sh ``` + + +Installing +----------------------- + +- [Install the gRPC core](https://github.com/grpc/grpc/blob/master/INSTALL) + +- Install gRPC Python's dependencies +``` +$ pip install enum34==1.0.4 futures==2.2.0 protobuf==3.0.0-alpha-1 +``` + +- Install gRPC Python +``` +$ pip install src/python/src +```