Craig Tiller 07eb5b0ccd Remove pollset_set_posix.c 9 years ago
..
grpc 639766023e Flagging the missing API entries. 9 years ago
tests fa6cad701c grpc_set_ssl_roots_override_callback for Python 10 years ago
.gitignore fa6cad701c grpc_set_ssl_roots_override_callback for Python 10 years ago
README.rst dfab11919e Update Python doc 10 years ago
commands.py f747409f6f Use precompiled extensions only 10 years ago
grpc_core_dependencies.py 07eb5b0ccd Remove pollset_set_posix.c 9 years ago
grpc_version.py 1935c3655c Flagging master as 0.14.0-dev. 10 years ago
precompiled.py f747409f6f Use precompiled extensions only 10 years ago
support.py 097070fe20 Diagnose missing Cython-generated files 10 years ago

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.