Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Installation instructions #146

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ Usage: relation-graph [options]
Set log level to INFO
```

## Installation
### MacOS
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really install things on Linux this way, but I imagine it's similar. Not sure how to do installation of this sort on Windows, though.

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:
```
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.

Expand Down