Sree Kuchibhotla 3cce2ecb12 Merge pull request #4859 from ctiller/sceq před 10 roky
..
grpc 639766023e Flagging the missing API entries. před 10 roky
tests fa6cad701c grpc_set_ssl_roots_override_callback for Python před 10 roky
.gitignore fa6cad701c grpc_set_ssl_roots_override_callback for Python před 10 roky
README.rst dfab11919e Update Python doc před 10 roky
commands.py f747409f6f Use precompiled extensions only před 10 roky
grpc_core_dependencies.py c0ce00fd16 Merge github.com:grpc/grpc into sceq před 10 roky
grpc_version.py 1935c3655c Flagging master as 0.14.0-dev. před 10 roky
precompiled.py f747409f6f Use precompiled extensions only před 10 roky
support.py 097070fe20 Diagnose missing Cython-generated files před 10 roky

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.