C++ quick start: add note about local installs (#691)

Closes #690
This commit is contained in:
Patrice Chalin 2021-03-01 14:51:54 -05:00 committed by GitHub
parent a531845af9
commit e29b23d1e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -104,7 +104,7 @@ While not mandatory, gRPC applications usually leverage [Protocol Buffers][pb]
for service definitions and data serialization, and the example code uses
[proto3][].
The following commands will build and locally install gRPC and Protocol Buffers.
The following commands build and locally install gRPC and Protocol Buffers:
```sh
$ cd grpc
@ -119,6 +119,12 @@ $ make install
$ popd
```
{{% alert title="Important" color="warning" %}}
We **strongly** encourage you to install gRPC _locally_ — using an
appropriately set `CMAKE_INSTALL_PREFIX` — because there is no easy way
to uninstall gRPC after you've installed it globally.
{{% /alert %}}
More information:
- You can find a complete set of instructions for building gRPC C++ in [Building