Masood Malekghassemi ec49e156fe Fix typo 9 éve
..
grpc 0cb803d9ca Always ref writable streams 10 éve
tests ec49e156fe Fix typo 9 éve
.gitignore fa6cad701c grpc_set_ssl_roots_override_callback for Python 10 éve
README.rst 7bee07555a Add troubleshooting section to package description 10 éve
commands.py 17908c168d Address comments and add a TODO. 9 éve
grpc_core_dependencies.py 4ea4599a50 Merge github.com:grpc/grpc into naming-crisis 10 éve
grpc_version.py 1935c3655c Flagging master as 0.14.0-dev. 10 éve
precompiled.py 736173487c Exclude cygrpc.so from the Python package 10 éve
support.py 097070fe20 Diagnose missing Cython-generated files 10 éve

README.rst

gRPC Python
===========

Package for gRPC Python.

Installation
------------

gRPC Python is available for Linux and Mac OS X running Python 2.7.

From PyPI
~~~~~~~~~

If you are installing locally...

::

$ pip install grpcio

Else system wide (on Ubuntu)...

::

$ sudo pip install grpcio

From Source
~~~~~~~~~~~

Building from source requires that you have the Python headers (usually a
package named `python-dev`).

::

$ export REPO_ROOT=grpc
$ git clone https://github.com/grpc/grpc.git $REPO_ROOT
$ cd $REPO_ROOT
$ pip install .

Note that `$REPO_ROOT` can be assigned to whatever directory name floats your
fancy.

Troubleshooting
~~~~~~~~~~~~~~~

Help, I ...

* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
grpc!**

This is likely because :code:`pip` doesn't own the offending dependency,
which in turn is likely because your operating system's package manager owns
it. You'll need to force the installation of the dependency:

:code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`