From 2904f32e082122510299f7bb7a4a844140a7d20a Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Wed, 12 Sep 2018 06:10:07 -0400 Subject: [PATCH] Update page 'Installation' --- Installation.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Installation.md diff --git a/Installation.md b/Installation.md new file mode 100644 index 0000000..650e466 --- /dev/null +++ b/Installation.md @@ -0,0 +1,27 @@ +You need a recent machine with `go` [installed](https://golang.org/doc/install). + +> This package has not been tested under the version **1.10**. + + + +##### 1. Download and install the package + +```bash +go get -u git.xdrm.io/go/aicra +``` + +It should now be available locally and available for your imports. + + + +##### 2. Compile the command-line builder + +You should then compile the project builder to help you manage your projects. + +```bash +go install git.xdrm.io/go/aicra/cmd/aicra +``` + + + +> The executable `aicra` will be placed into your `$GOPATH/bin` folder, if added to your environment PATH it should be available as a standalone command in your terminal. If not, you can simply run `$GOPATH/bin/aicra` to use the command or create a symlink into `/usr/local/bin` for instance. \ No newline at end of file