diff options
author | Masood Malekghassemi <atash@google.com> | 2016-03-02 14:38:07 -0800 |
---|---|---|
committer | Masood Malekghassemi <atash@google.com> | 2016-03-02 14:41:01 -0800 |
commit | 7bee07555af388cd080fd8c15e7c8ee4725974f9 (patch) | |
tree | ad26775b1d46a028220d35e92dc17cb528c20375 /src/python | |
parent | 16e8bbbff2ebf9c80c68431beaed676d1981a64d (diff) |
Add troubleshooting section to package description
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio/README.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/python/grpcio/README.rst b/src/python/grpcio/README.rst index 698c760ebe..f3e962c197 100644 --- a/src/python/grpcio/README.rst +++ b/src/python/grpcio/README.rst @@ -38,3 +38,17 @@ package named `python-dev`). 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` |