aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-17 10:37:12 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-17 10:37:12 -0700
commit921f4b0a6e0c77f8c1d0f48b72d7087a21f5e311 (patch)
tree1e415dfb12327ce1ae53a5b04c763d754efa93df /src/python/grpcio
parentc2ce51fbeb2fe40ec6c327ffd06482b6dfda2398 (diff)
parent2f084ee39e1894e6d625452c444f6ea25f591176 (diff)
Merge pull request #5791 from sreecha/grpc_fixit
DocFixit: Python README
Diffstat (limited to 'src/python/grpcio')
-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
~~~~~~~~~~~~~~~