Revise installation methods (#284)

This commit is contained in:
Greg Weber 2017-12-11 10:53:42 -08:00 committed by Casey Rodarmor
parent 92ed21c079
commit edbc1ae175

View File

@ -35,9 +35,19 @@ toc::[]
== Installation == Installation
`just` should run on any system with a reasonable `sh`. `just` should run on any system with a reasonable `sh`, including Linux, MacOS, and the BSDs.
On Windows, you'll need to install https://git-scm.com[git] or https://desktop.github.com[GitHub Desktop]. On Windows, `just` works with the `sh` provided by https://git-scm.com[Git for Windows], https://desktop.github.com[GitHub Desktop], and http://www.cygwin.com[Cygwin].
=== Pre-built Binaries
Pre-built binaries for Linux, MacOS, and Windows can be found on https://github.com/casey/just/releases[the releases page].
=== Homebrew
On MacOS, `just` is a available through the https://brew.sh[Homebrew] package manager. Install Homebrew using the instructions at https://brew.sh, then run:
`brew install just`
=== Cargo === Cargo
@ -49,15 +59,6 @@ On Windows, you'll need to install https://git-scm.com[git] or https://desktop.g
`rustup` may have done #3 for you. If this doesn't work, put `export PATH="$HOME/.cargo/bin:$PATH"` in your shell's configuration file `rustup` may have done #3 for you. If this doesn't work, put `export PATH="$HOME/.cargo/bin:$PATH"` in your shell's configuration file
=== Homebrew
On MacOS, `just` is a available through the https://brew.sh[Homebrew] package manager. Install Homebrew using the instructions at https://brew.sh, then run:
`brew install just`
=== Pre-built Binaries
Pre-built binaries for Linux, macOS, and Windows can be found on https://github.com/casey/just/releases[the releases page].
== Quick Start == Quick Start