• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-Jan-2021-

grpc/H13-Jan-2021-23,12517,828

.gitignoreH A D13-Jan-2021157 1716

README.rstH A D13-Jan-20212.9 KiB11673

_parallel_compile_patch.pyH A D13-Jan-20212.4 KiB6740

_spawn_patch.pyH A D13-Jan-20212.1 KiB6137

commands.pyH A D13-Jan-202112.5 KiB338245

grpc_core_dependencies.pyH A D13-Jan-202173.8 KiB1,1981,180

grpc_version.pyH A D13-Jan-2021689 181

support.pyH A D13-Jan-20214.3 KiB11988

README.rst

1gRPC Python
2===========
3
4|compat_check_pypi|
5
6Package for gRPC Python.
7
8.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
9   :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio
10
11Supported Python Versions
12-------------------------
13Python >= 3.5
14
15Installation
16------------
17
18gRPC Python is available for Linux, macOS, and Windows.
19
20Installing From PyPI
21~~~~~~~~~~~~~~~~~~~~
22
23If you are installing locally...
24
25::
26
27  $ pip install grpcio
28
29Else system wide (on Ubuntu)...
30
31::
32
33  $ sudo pip install grpcio
34
35If you're on Windows make sure that you installed the :code:`pip.exe` component
36when you installed Python (if not go back and install it!) then invoke:
37
38::
39
40  $ pip.exe install grpcio
41
42Windows users may need to invoke :code:`pip.exe` from a command line ran as
43administrator.
44
45n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
46to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
47version!
48
49Installing From Source
50~~~~~~~~~~~~~~~~~~~~~~
51
52Building from source requires that you have the Python headers (usually a
53package named :code:`python-dev`).
54
55::
56
57  $ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
58  $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
59  $ cd $REPO_ROOT
60  $ git submodule update --init
61
62  # For the next two commands do `sudo pip install` if you get permission-denied errors
63  $ pip install -rrequirements.txt
64  $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
65
66You cannot currently install Python from source on Windows. Things might work
67out for you in MSYS2 (follow the Linux instructions), but it isn't officially
68supported at the moment.
69
70Troubleshooting
71~~~~~~~~~~~~~~~
72
73Help, I ...
74
75* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
76  grpc**
77
78  This is likely because :code:`pip` doesn't own the offending dependency,
79  which in turn is likely because your operating system's package manager owns
80  it. You'll need to force the installation of the dependency:
81
82  :code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`
83
84  For example, if you get an error like the following:
85
86  ::
87
88    Traceback (most recent call last):
89    File "<string>", line 17, in <module>
90     ...
91    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
92      raise VersionConflict(dist, req)
93    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))
94
95  You can fix it by doing:
96
97  ::
98
99    sudo pip install --ignore-installed six
100
101* **... see the following error on some platforms**
102
103  ::
104
105    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
106    #include "Python.h"
107                    ^
108    compilation terminated.
109
110  You can fix it by installing `python-dev` package. i.e
111
112  ::
113
114    sudo apt-get install python-dev
115
116