You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: public/index.html
+27-10Lines changed: 27 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -51,28 +51,45 @@ <h2>About the CLI</h2>
51
51
<p><code>exercism</code> is a command line tool to interact with <ahref="http://exercism.io">exercism.io</a>.</p>
52
52
<p>It is written in Go, but you do not need to install Go (or any other language) in order to use it.</p>
53
53
54
-
<p>On Mac OS X or Linux you can install the CLI with the following command [<ahref="/install">view source</a>]:</p>
54
+
55
+
<h3>Download the CLI</h3>
56
+
57
+
<p>Download the <ahref="https://github.com/exercism/cli/releases/latest">latest release</a> and place the binary in your <code>PATH</code>.</p>
58
+
59
+
<h3>Installing with Homebrew</h3>
60
+
<p>If you have homebrew installed, then you can install the CLI with the following command:</p>
55
61
56
62
<preclass="content-code">
57
-
$ curl -s http://cli.exercism.io/install | sh
63
+
$ brew tap homebrew/binary
64
+
$ brew install exercism
58
65
</pre>
59
66
60
-
<p>By default, the installer will try to put it in `/usr/local/bin/` or `$HOME/bin`.</p>
61
-
<p>If you'd like it to live somewhere else, you can specify it up front:</p>
67
+
<h3>Arch User Repository (AUR)</h3>
68
+
69
+
<p>The CLI is available via AUR.</p>
70
+
71
+
<h3>Or... Use the Install Script</h3>
72
+
73
+
<p>On Mac OS X or Linux, as a last resort, you can download the [<ahref="/install">install script</a>], and run it locally.</p>
62
74
63
75
<preclass="content-code">
64
-
$ curl -s http://cli.exercism.io/install | DIR=/path/to/bin sh
76
+
$ curl -O http://cli.exercism.io/install
77
+
$ chmod +x install
65
78
</pre>
66
79
67
-
<p>Or, download the <ahref="https://github.com/exercism/cli/releases/latest">latest release</a> and place the binary in your <code>PATH</code>.</p>
80
+
<preclass="content-code">
81
+
$ wget http://cli.exercism.io/install
82
+
$ chmod +x install
83
+
</pre>
84
+
<p><b>Read it before you run it, people.</b></p>
68
85
69
-
<h3>Installing with Homebrew</h3>
70
-
<p>If you have homebrew installed, then you can install the CLI with the following command:</p>
86
+
<p>By default, the installer will try to put it in `/usr/local/bin/` or `$HOME/bin`.</p>
87
+
<p>If you'd like it to live somewhere else, you can specify it up front:</p>
0 commit comments