aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-02-26 15:22:58 -0800
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-02-26 15:22:58 -0800
commit10682b758c99dac7e656880dbb6e344c19884513 (patch)
treecb6080bbf42b9478395c8ff6a16739a3cb9ae0b9
parent238cdbf2c9e3317f1648cab31de3d311d5f94b79 (diff)
parent89fccb7d7a2aba92ac45dbd577dd7f07568696ba (diff)
Merge pull request #842 from nathanielmanistaatgoogle/simple-install-python
Simple installation instructions for Python.
-rwxr-xr-xsrc/python/README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/python/README.md b/src/python/README.md
index 0ead86b91e..06ef1a0f83 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
+```