aboutsummaryrefslogtreecommitdiffhomepage
path: root/INSTALL.md
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2016-03-03 13:53:49 -0800
committerGravatar Stanley Cheung <stanleycheung@google.com>2016-03-03 14:58:48 -0800
commit6dd3c707c2dd921288a82ec9813d41b567ff07b6 (patch)
treec7016740c1409c983ffd8971a2763d6daaa985be /INSTALL.md
parent7db77f84422fec9f1361c100397cfef17f84ca8c (diff)
Update base INSTALL to markdown and remove outdated content
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
new file mode 100644
index 0000000000..aa809f23c8
--- /dev/null
+++ b/INSTALL.md
@@ -0,0 +1,45 @@
+#If you are in a hurry
+
+For language-specific installation instructions, please refer to these
+documents
+
+ * [C++](examples/cpp)
+ * [C#](src/csharp): NuGet package `Grpc`
+ * [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
+ * [Java](https://github.com/grpc/grpc-java)
+ * [Node](src/node): `npm install grpc`
+ * [Objective-C](src/objective-c)
+ * [PHP](src/php): `pecl install grpc-beta`
+ * [Python](src/python/grpcio): `pip install grpcio`
+ * [Ruby](src/ruby): `gem install grpc`
+
+
+#Pre-requisites
+
+##Linux
+
+```sh
+ $ [sudo] apt-get install build-essential autoconf libtool
+```
+
+##Mac OSX
+
+For a Mac system, git is not available by default. You will first need to
+install Xcode from the Mac AppStore and then run the following command from a
+terminal:
+
+```sh
+ $ [sudo] xcode-select --install
+```
+
+#Build from Source
+
+This is for compiling just the gRPC C Core library.
+
+```sh
+ $ git clone https://github.com/grpc/grpc.git
+ $ cd grpc
+ $ git submodule update --init
+ $ make
+ $ [sudo] make install
+```