aboutsummaryrefslogtreecommitdiffhomepage
path: root/INSTALL
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-08-19 15:59:59 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-08-19 15:59:59 -0700
commit5329e4bd3f7c5580b67a784c64a7aacbd5cb3549 (patch)
treeacfbda7178dddc996369b6b6d5a73f4faf154bd5 /INSTALL
parenta79a896d4cc12d4ee594e37afee65fdb30f5d274 (diff)
update installation instructions, review feedback
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL17
1 files changed, 9 insertions, 8 deletions
diff --git a/INSTALL b/INSTALL
index b4a53bbba1..d183fceb9a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -11,15 +11,16 @@ wiki pages:
On Linux (Debian):
- Note: you will need to add the Debian 'unstable' distribution to your source
+ Note: you will need to add the Debian 'unstable' distribution to your sources
file first.
Add the following line to your `/etc/apt/sources.list` file:
- deb http://ftp.us.debian.org/debian unstable main contrib non-free
+ deb http://ftp.us.debian.org/debian unstable main contrib non-free
- Install the gRPC library
- $ sudo apt-get install libgrpc-dev
+ Install the gRPC library:
+
+ $ [sudo] apt-get install libgrpc-dev
OR
@@ -27,21 +28,21 @@ OR
$ cd grpc
$ git submodule update --init
$ make
- $ sudo make install
+ $ [sudo] make install
You don't need anything else than GNU Make, gcc and autotools. Under a Debian
or Ubuntu system, this should boil down to the following packages:
- $ apt-get install build-essential autoconf libtool
+ $ [sudo] apt-get install build-essential autoconf libtool
Building the python wrapper requires the following:
- $ apt-get install python-all-dev python-virtualenv
+ $ [sudo] apt-get install python-all-dev python-virtualenv
If you want to install in a different directory than the default /usr/lib, you can
override it on the command line:
- $ make install prefix=/opt
+ $ [sudo] make install prefix=/opt
*******************************