# Installer grpc avec Homebrew, apk, dnf, MacPorts, Nix, pacman, apt, zypper

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de grpc pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:grpc
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install grpc
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install grpc
```

  Preuve: MacPorts ports tree: devel/grpc/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add grpc
```

  Preuve: Alpine Linux edge package indexes: grpc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- dnf (92%):

```sh
sudo dnf install grpc
```

  Preuve: Fedora Rawhide package metadata: grpc from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#grpc
```

  Preuve: nixpkgs package indexes: pkgs/by-name/gr/grpc/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S grpc
```

  Preuve: Arch Linux sync databases: grpc from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- Debian apt (92%):

```sh
sudo apt install libgrpc++-dev
```

  Preuve: Debian stable package indexes: libgrpc++-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- zypper (92%):

```sh
sudo zypper install grpc-devel
```

  Preuve: openSUSE Tumbleweed package metadata: grpc-devel from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Faits du paquet

- **Clé du paquet:** brew:grpc
- **Gestionnaire de paquets:** Homebrew
- **Version:** 1.83.0
- **Résumé source:** Next generation open source RPC library and framework
- **Page d'accueil:** <https://grpc.io/>
- **Dépôt:** <https://github.com/grpc/grpc>
- **Dernière mise à jour:** 2026-07-23T12:28:16Z
- **Généré:** 2026-08-03T19:37:03+00:00

## exécutables

- grpc_cpp_plugin (alias)
- grpc_csharp_plugin (alias)
- grpc_node_plugin (alias)
- grpc_objective_c_plugin (alias)
- grpc_php_plugin (alias)
- grpc_python_plugin (alias)
- grpc_ruby_plugin (alias)

## Comportement d'installation

- Bouteille: non disponible

## Version et fraîcheur

- page générée: 2026-08-03
- version du gestionnaire: 1.83.0
## Historique du projet et usages

gRPC is an open source, high-performance Remote Procedure Call framework used to define services with Protocol Buffers and generate client/server bindings across languages.

The Homebrew `grpc` package is especially package-manager-relevant because it ships native code and protocol-compiler plugins for multiple languages, making it part runtime library, part code-generation toolkit, and part distributed-systems plumbing.

### Historique du projet

The gRPC design came from Google's internal Stubby RPC infrastructure. The official 2015 motivation and design post explains that Stubby had connected large numbers of Google microservices for more than a decade but was tied to internal infrastructure, while HTTP/2 and related public standards made an open rework practical.

gRPC was announced publicly in 2015 and reached 1.0 on 2016-08-23. The 1.0 announcement stated that C++, Java, Go, Node, Ruby, Python, and C# moved to 1.0 across Linux, Windows, and Mac, with Objective-C and Android Java support also moving to 1.0.

The 1.0 release established a stable core protocol and API surface, semantic versioning expectations, cross-language interoperability tests, and public performance measurements. That combination made gRPC packageable not only as a library but as a cross-language toolchain component.

CNCF accepted gRPC on 2017-02-16 at the Incubating maturity level. The CNCF project page identifies it as a high-performance open source universal RPC framework and exposes project health and contributor metrics through LFX insights.

### Historique d'adoption

The 1.0 announcement described early usage in open source projects such as etcd, containerd, and CockroachDB and by companies including Netflix, Vendasta, YikYak, Carbon3D, Cisco, Juniper, Arista, and Ciena. It also cited Google Cloud APIs and TensorFlow using gRPC for API surfaces or inter-process communication.

The official site presents gRPC as useful across data centers, mobile applications, browsers, and backend services, with pluggable support for load balancing, tracing, health checking, and authentication.

gRPC-Web extended the model toward browser clients. The official gRPC-Web history notes work beginning in 2016, a 1.0/GA moment in 2018 for the Google implementation, and Envoy-proxy-based deployment patterns for translating browser requests to gRPC HTTP/2 services.

### Modes d'utilisation

Developers define services in `.proto` files, then use `protoc` and gRPC plugins to generate typed client and server code. The Homebrew package's executables are language plugins such as `grpc_cpp_plugin`, `grpc_csharp_plugin`, `grpc_node_plugin`, `grpc_objective_c_plugin`, `grpc_php_plugin`, `grpc_python_plugin`, and `grpc_ruby_plugin`.

Common package use is indirect: a developer installs `grpc` so builds can generate service stubs, compile native gRPC dependencies, or satisfy packages that need C-core-based language bindings.

gRPC's design goals explain why it became a package-manager staple: broad platform coverage, open licensing, interoperability over common infrastructure, general-purpose performance, streaming, blocking and non-blocking APIs, cancellation, flow control, pluggability, metadata, and standardized status codes.

### Pourquoi les passionnés de paquets s'y intéressent

gRPC is a dependency magnet. It appears in language package managers, OS package managers, Docker images, generated-code workflows, and cloud-native control planes because service definitions need compiler plugins and runtime libraries.

It also illustrates a hard packaging problem: one protocol family spans C/C++, Go, Java, Python, Ruby, PHP, Objective-C, C#, Node, web proxies, and generated artifacts. OS packages often expose only a slice of that surface while language ecosystems ship their own runtime packages.

For CLI and formula users, the codegen plugins are the visible part. A successful install often matters less because a human will run `grpc_cpp_plugin` directly and more because Bazel, CMake, Make, Gradle, or another build tool can find it during protocol generation.

### Chronologie

- 2014: CNCF project metrics list the first commit date as 2014-05-06.
- 2015: gRPC design principles were published, describing the public rework of Google's Stubby ideas.
- 2016: gRPC 1.0 was announced on 2016-08-23.
- 2017: gRPC was accepted to CNCF at the Incubating maturity level.
- 2018: gRPC-Web reached general availability for the Google implementation.
- 2021: The gRPC C# project announced a shift toward grpc-dotnet for the future of C# usage.

### Related projects

- Protocol Buffers provide the default interface definition language and message encoding for gRPC.
- grpc-go, grpc-java, grpc-node, grpc-dotnet, grpc-web, and other language implementations carry gRPC into specific ecosystems.
- Envoy is commonly used as a gRPC and gRPC-Web proxy in cloud-native deployments.
- grpc-gateway maps gRPC services to REST/JSON interfaces for mixed client environments.
- etcd, containerd, CockroachDB, TensorFlow, and several Google Cloud APIs are prominent projects or services cited by official gRPC materials.

### Sources

- <https://github.com/grpc/grpc>
- <https://grpc.io/>
- <https://grpc.io/blog/ga-announcement/>
- <https://grpc.io/blog/grpc-csharp-future/>
- <https://grpc.io/blog/principles/>
- <https://grpc.io/blog/state-of-grpc-web/>
- <https://grpc.io/docs/what-is-grpc/introduction/>
- <https://www.cncf.io/projects/grpc/>


## Notes de sécurité

library-like package without higher-risk signals.

- **Risque Geiger:** vert / faible
- library-like package without higher-risk signals

## Autres enregistrements de gestionnaires de paquets

- Debian apt - libgrpc++-dev - 1.51.1-6: normalized package name match | Debian stable package indexes: libgrpc++-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | high performance general RPC framework (development) | https://www.grpc.io/
- Debian apt - libgrpc++1.51t64 - 1.51.1-6: normalized package name match | Debian stable package indexes: libgrpc++1.51t64 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | high performance general RPC framework | https://www.grpc.io/
- Debian apt - libgrpc-dev - 1.51.1-6: normalized package name match | Debian stable package indexes: libgrpc-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | high performance general RPC framework (development) | https://www.grpc.io/
- Debian apt - libgrpc29t64 - 1.51.1-6: normalized package name match | Debian stable package indexes: libgrpc29t64 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | high performance general RPC framework | https://www.grpc.io/
- Debian apt - protobuf-compiler-grpc - 1.51.1-6: normalized package name match | Debian stable package indexes: protobuf-compiler-grpc from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | high performance general RPC framework - protobuf plugin | https://www.grpc.io/
- Debian apt - python3-grpcio - 1.51.1-6: normalized package name match | Debian stable package indexes: python3-grpcio from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | GRPC system (Python 3) | https://www.grpc.io/
- Debian apt - ruby-grpc - 1.51.1-6: normalized package name match | Debian stable package indexes: ruby-grpc from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | GRPC system in Ruby | https://www.grpc.io/
- Debian apt - ruby-grpc-tools - 1.51.1-6: normalized package name match | Debian stable package indexes: ruby-grpc-tools from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Development tools for Ruby gRPC | https://www.grpc.io/
- Nix - grpc: normalized package name match | nixpkgs package indexes: pkgs/by-name/gr/grpc/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - libgrpc++-dev - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: libgrpc++-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | high performance general RPC framework (development) | https://www.grpc.io/
- Ubuntu apt - libgrpc++1.51t64 - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: libgrpc++1.51t64 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | high performance general RPC framework | https://www.grpc.io/
- Ubuntu apt - libgrpc-dev - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: libgrpc-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | high performance general RPC framework (development) | https://www.grpc.io/
- Ubuntu apt - libgrpc29t64 - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: libgrpc29t64 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | high performance general RPC framework | https://www.grpc.io/
- Ubuntu apt - protobuf-compiler-grpc - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: protobuf-compiler-grpc from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | high performance general RPC framework - protobuf plugin | https://www.grpc.io/
- Ubuntu apt - python3-grpcio - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: python3-grpcio from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | GRPC system (Python 3) | https://www.grpc.io/
- Ubuntu apt - ruby-grpc - 1.51.1-4.1build5: normalized package name match | Ubuntu 24.04 LTS package indexes: ruby-grpc from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | GRPC system in Ruby | https://www.grpc.io/


## Combined YAML source

View the package source record on GitHub. [combined/grpc.yml](https://github.com/mxcl/pkgdb/blob/main/combined/grpc.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
