From c22f0291fd20a3ef6fbb460608ee47dc2a1bc02e Mon Sep 17 00:00:00 2001 From: Joe Flack Date: Wed, 10 Aug 2022 16:32:05 -0400 Subject: [PATCH 1/3] Update README.md Added installation section. Added MacOS installation instructions --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7beb411..a93e218 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,14 @@ Usage: relation-graph [options] Set log level to INFO ``` +## Installation +### MacOS +1. Download `relation-graph-cli-*.tgz` [latest release](https://github.com/balhoff/relation-graph/releases/latest). +2. Unzip `relation-graph-cli-*.tgz`. +3. From within the unzipped folder, run: + - `cp bin/* /usr/local/bin/` + - `cp lib/* /usr/local/lib/` + ## Build Install `sbt` (Scala Build Tool) on your system. For Mac OS X, it is easily done using [Homebrew](http://brew.sh): `brew install sbt`. `sbt` requires a working Java installation, but you do not need to otherwise install Scala. From 33c8f4101ff5fc07f7ce73ee2c16e5f27b75dc1a Mon Sep 17 00:00:00 2001 From: Joe Flack Date: Thu, 25 Aug 2022 17:31:48 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a93e218..c811890 100644 --- a/README.md +++ b/README.md @@ -57,9 +57,14 @@ Usage: relation-graph [options] ### MacOS 1. Download `relation-graph-cli-*.tgz` [latest release](https://github.com/balhoff/relation-graph/releases/latest). 2. Unzip `relation-graph-cli-*.tgz`. -3. From within the unzipped folder, run: - - `cp bin/* /usr/local/bin/` - - `cp lib/* /usr/local/lib/` +3. Run: +``` +cd path/to/unzipped/relation-graph-cli-*/ +cp bin/* /usr/local/bin/ +cp lib/* /usr/local/lib/ +chmod 777 /usr/local/bin/relation-graph +``` +4. If prompted by MacOS, [allow permissions](https://support.apple.com/en-us/HT202491). ## Build Install `sbt` (Scala Build Tool) on your system. For Mac OS X, it is easily done using [Homebrew](http://brew.sh): `brew install sbt`. `sbt` requires a working Java installation, but you do not need to otherwise install Scala. From e55936659427d75d22bd30c8828bea16c3fad413 Mon Sep 17 00:00:00 2001 From: Joe Flack Date: Thu, 25 Aug 2022 17:34:17 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c811890..631f464 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Usage: relation-graph [options] ## Installation ### MacOS -1. Download `relation-graph-cli-*.tgz` [latest release](https://github.com/balhoff/relation-graph/releases/latest). +1. Download `relation-graph-cli-*.tgz` from the [latest release](https://github.com/balhoff/relation-graph/releases/latest). 2. Unzip `relation-graph-cli-*.tgz`. 3. Run: ```