aboutsummaryrefslogtreecommitdiffhomepage
path: root/INSTALL
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-08-19 08:20:06 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-08-19 14:39:05 -0700
commitdbeb1cd90c8f4596b2682f6c6d0182b25287391f (patch)
tree2e74f1c7bf8c65f3502619b81f5912e6c72e8b53 /INSTALL
parent89bede02f16905eb48b71710dc4ea2542b3a5ca1 (diff)
update debian install instructions
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL16
1 files changed, 13 insertions, 3 deletions
diff --git a/INSTALL b/INSTALL
index 808166dfed..5c76de8fb4 100644
--- a/INSTALL
+++ b/INSTALL
@@ -15,19 +15,29 @@ wiki pages:
$ make
$ sudo make install
+OR, on Linux (Debian):
+
+ $ sudo apt-get install libgrpc-dev
+
+ Note: you will need to add the Debian 'unstable' distribution to your source
+ file first. Example: Add the following line to your `/etc/apt/sources.list`
+ file.
+
+ deb http://ftp.us.debian.org/debian unstable main contrib non-free
+
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
+ $ apt-get install build-essential autoconf libtool
Building the python wrapper requires the following:
- # apt-get install python-all-dev python-virtualenv
+ $ 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
+ $ make install prefix=/opt
*******************************