-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base INSTALL to markdown and remove outdated content
- Loading branch information
1 parent
7db77f8
commit 6dd3c70
Showing
7 changed files
with
50 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters