Revision 9d3b0f86dd54e14be086942c7917ae8fa431e04b authored by Iddan Aaronsohn on 17 October 2019, 12:14:26 UTC, committed by Iddan Aaronsohn on 22 October 2019, 22:17:07 UTC
1 parent 176791c
Raw File
installation.md
# Install Cayley

## Install Cayley on Ubuntu

```text
snap install --edge --devmode cayley
```

## Install Cayley on macOS

### Install Homebrew

macOS does not include the Homebrew brew package by default. Install brew using the [official instructions](https://brew.sh/#install)

### Install Cayley

```bash
brew install cayley
```

## Install Cayley with Docker

```bash
docker run -p 64210:64210 cayleygraph/cayley
```

For more information see [Container Documentation](container.md)

## Build from Source

See instructions in [Contributing](contributing.md)

back to top