Revision 36b746a02ffd88462e0540d59ee8239e42e86a41 authored by Iddan Aaronsohn on 13 December 2019, 11:29:13 UTC, committed by Iddan Aaronsohn on 13 December 2019, 11:29:13 UTC
1 parent 4bced0c
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