aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/README.rst
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2016-03-16 16:59:57 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2016-03-16 23:09:56 -0700
commit2f084ee39e1894e6d625452c444f6ea25f591176 (patch)
tree04a4e31388aedf7d40ae313c3d12416861a4c7da /src/python/grpcio/README.rst
parent91bd67cb337d8794f41b481c773203e72492272b (diff)
DocFixit: Python README
Diffstat (limited to 'src/python/grpcio/README.rst')
-rw-r--r--src/python/grpcio/README.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/python/grpcio/README.rst b/src/python/grpcio/README.rst
index 3dfae50b4b..3f4c6fad02 100644
--- a/src/python/grpcio/README.rst
+++ b/src/python/grpcio/README.rst
@@ -35,13 +35,14 @@ package named :code:`python-dev`).
::
- $ export REPO_ROOT=grpc
+ $ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
$ git clone https://github.com/grpc/grpc.git $REPO_ROOT
$ cd $REPO_ROOT
- $ pip install .
-Note that :code:`$REPO_ROOT` can be assigned to whatever directory name floats
-your fancy.
+ # For the next two commands do `sudo pip install` if you get permission-denied errors
+ $ pip install -rrequirements.txt
+ $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
+
Troubleshooting
~~~~~~~~~~~~~~~