https://github.com/manigandand/grpc
to get start with grpc https://grpc.io/
https://github.com/manigandand/grpc
golang grpc python shell
Last synced: 11 months ago
JSON representation
to get start with grpc https://grpc.io/
- Host: GitHub
- URL: https://github.com/manigandand/grpc
- Owner: manigandand
- License: unlicense
- Created: 2018-01-11T16:24:15.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-19T10:07:11.000Z (over 7 years ago)
- Last Synced: 2025-04-30T17:05:19.068Z (11 months ago)
- Topics: golang, grpc, python, shell
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gRPC
https://grpc.io/
## Requirements
```
pipenv shell
brew install protobuf
OR
https://github.com/protocolbuffers/protobuf/blob/master/src/README.md
https://askubuntu.com/questions/1072683/how-can-i-install-protoc-on-ubuntu-16-04
sudo apt-get update
sudo apt-get install protobuf-compiler
# Python
pip install grpcio grpcio-tools
# Go
go get -u google.golang.org/grpc
go get -u github.com/golang/protobuf/protoc-gen-go
# Node
npm install -g grpc-tools
# If permission issue
sudo chown -R $(whoami) ~/.npm
sudo chown -R $(whoami) /usr/lib/node_modules
sudo chown -R $(whoami) /usr/local/lib/node_modules
```