Skip to content
Snippets Groups Projects
Commit e8130a12 authored by Stanley Cheung's avatar Stanley Cheung
Browse files

Update README.md with new installation flow

parent 5a80ac37
No related branches found
No related tags found
No related merge requests found
...@@ -6,24 +6,18 @@ Background ...@@ -6,24 +6,18 @@ Background
For this sample, we've already generated the server and client stubs from For this sample, we've already generated the server and client stubs from
[helloworld.proto][] and we'll be using a specific reference platform. [helloworld.proto][] and we'll be using a specific reference platform.
Prerequisites
-------------
- Debian 8.2 "Jessie" platform with `root` access
- `git`
- `python2.7`
- `pip`
- Python development headers
Set-up Install gRPC:
-------
```sh ```sh
$ # install the gRPC Core: $ pip install grpcio
$ sudo apt-get install libgrpc-dev ```
$ # install gRPC Python: Or, to install it system wide:
$ sudo pip install -U grpcio==0.11.0b1 ```sh
$ # Since this "hello, world" example uses protocol buffers: $ sudo pip install grpcio
$ sudo pip install -U protobuf==3.0.0a3 ```
Download the example
```sh
$ # Clone the repository to get the example code: $ # Clone the repository to get the example code:
$ git clone https://github.com/grpc/grpc $ git clone https://github.com/grpc/grpc
$ # Navigate to the "hello, world" Python example: $ # Navigate to the "hello, world" Python example:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment