File tree Expand file tree Collapse file tree 1 file changed +10
-16
lines changed Expand file tree Collapse file tree 1 file changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -6,24 +6,18 @@ Background
6
6
For this sample, we've already generated the server and client stubs from
7
7
[ helloworld.proto] [ ] and we'll be using a specific reference platform.
8
8
9
- Prerequisites
10
- -------------
11
-
12
- - Debian 8.2 "Jessie" platform with ` root ` access
13
- - ` git `
14
- - ` python2.7 `
15
- - ` pip `
16
- - Python development headers
17
9
18
- Set-up
19
- -------
10
+ Install gRPC:
20
11
``` sh
21
- $ # install the gRPC Core:
22
- $ sudo apt-get install libgrpc-dev
23
- $ # install gRPC Python:
24
- $ sudo pip install -U grpcio==0.11.0b1
25
- $ # Since this "hello, world" example uses protocol buffers:
26
- $ sudo pip install -U protobuf==3.0.0a3
12
+ $ pip install grpcio
13
+ ```
14
+ Or, to install it system wide:
15
+ ``` sh
16
+ $ sudo pip install grpcio
17
+ ```
18
+
19
+ Download the example
20
+ ``` sh
27
21
$ # Clone the repository to get the example code:
28
22
$ git clone https://github.com/grpc/grpc
29
23
$ # Navigate to the "hello, world" Python example:
You can’t perform that action at this time.
0 commit comments