|
3 | 3 | [](https://travis-ci.org/deis/workflow-cli) |
4 | 4 | [](http://goreportcard.com/report/deis/workflow-cli) |
5 | 5 | [](https://codebeat.co/projects/github-com-deis-workflow-cli) |
6 | | -[](https://bintray.com/deis/deisci/deis/_latestVersion) |
| 6 | + |
| 7 | +Download Links: |
| 8 | + |
| 9 | +- [64 Bit Linux](https://storage.googleapis.com/workflow-cli/deis-latest-linux-amd64) |
| 10 | +- [32 Bit Linux](https://storage.googleapis.com/workflow-cli/deis-latest-linux-386) |
| 11 | +- [64 Bit Mac OS X](https://storage.googleapis.com/workflow-cli/deis-latest-darwin-amd64) |
| 12 | +- [32 Bit Max OS X](https://storage.googleapis.com/workflow-cli/deis-latest-darwin-386) |
| 13 | + |
| 14 | +(Note: Windows builds are not yet supported. [#26](https://github.com/deis/workflow-cli/issues/26) currently tracks the work to support them). |
7 | 15 |
|
8 | 16 | `deis` is a command line utility used to interact with the [Deis](http://deis.io) open source PaaS. |
9 | 17 |
|
10 | 18 | Please add any [issues](https://github.com/deis/workflow-cli/issues) you find with this software to the [Deis Workflow CLI Project](https://github.com/deis/workflow-cli). |
11 | 19 |
|
12 | 20 | ## Installation |
13 | 21 |
|
14 | | -### From Bintray |
| 22 | +### Pre-built Binary |
15 | 23 |
|
16 | | -Install the `deis` client from [bintray](https://bintray.com/) by running |
| 24 | +See the appropriate sub-section below for your system to download and install the latest build of this software. |
17 | 25 |
|
18 | | - $ curl -sSL http://deis.io/deis-cli/install-v2.sh | bash |
| 26 | +#### 64 Bit Linux |
19 | 27 |
|
20 | | -The installer will fetch the latest version of the client into your current directory. |
| 28 | +```console |
| 29 | +curl -o deis https://storage.googleapis.com/workflow-cli/deis-latest-linux-amd64 && chmod +x deis |
| 30 | +``` |
21 | 31 |
|
22 | | - $ ./deis --version |
| 32 | +#### 32 Bit Linux |
| 33 | + |
| 34 | +```console |
| 35 | +curl -o deis https://storage.googleapis.com/workflow-cli/deis-latest-linux-386 && chmod +x deis |
| 36 | +``` |
| 37 | + |
| 38 | +#### 64 Bit Mac OS X |
| 39 | + |
| 40 | +```console |
| 41 | +curl -o deis https://storage.googleapis.com/workflow-cli/deis-latest-darwin-amd64 && chmod +x deis |
| 42 | +``` |
| 43 | + |
| 44 | +#### 32 Bit Max OS X |
| 45 | + |
| 46 | +```console |
| 47 | +curl -o deis https://storage.googleapis.com/workflow-cli/deis-latest-darwin-386 && chmod +x deis |
| 48 | +``` |
| 49 | + |
| 50 | +#### Windows |
| 51 | + |
| 52 | +Windows builds are not yet supported. [#26](https://github.com/deis/workflow-cli/issues/26) currently tracks the work to support them). |
| 53 | + |
| 54 | + |
| 55 | +After you execute the appropriate command for your system, you'll have a `deis` binary in the current directory. |
| 56 | + |
| 57 | +Run the following to see the version: |
| 58 | + |
| 59 | +```console |
| 60 | +$ ./deis --version |
| 61 | +``` |
23 | 62 |
|
24 | 63 | You can then move it anywhere in your path: |
25 | 64 |
|
26 | | - $ mv deis /usr/local/bin |
| 65 | +```console |
| 66 | +$ mv deis /usr/local/bin |
| 67 | +``` |
27 | 68 |
|
28 | 69 | ### From Scratch |
29 | 70 |
|
|
0 commit comments