https://github.com/alextanhongpin/python-grpc
Working demo for grpc
https://github.com/alextanhongpin/python-grpc
grpc python
Last synced: about 1 year ago
JSON representation
Working demo for grpc
- Host: GitHub
- URL: https://github.com/alextanhongpin/python-grpc
- Owner: alextanhongpin
- Created: 2017-09-18T09:39:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T09:39:38.000Z (over 8 years ago)
- Last Synced: 2025-01-29T21:52:17.382Z (about 1 year ago)
- Topics: grpc, python
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
## Upgrade pip
```bash
$ python -m pip install --upgrade pip
```
```bash
$ python -m pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
$ python -m pip install --upgrade pip
```
## Install gRPC
```bash
$ python -m pip install grpcio
$ python -m pip install grpcio-tools
```
## Save the dependencies
```bash
$ pip freeze > requirements.txt
```