github.com/cayleygraph/cayley@v0.7.7/docs/installation.md (about) 1 # Install Cayley 2 3 ## Install Cayley on Ubuntu 4 5 ```text 6 snap install --edge --devmode cayley 7 ``` 8 9 ## Install Cayley on macOS 10 11 ### Install Homebrew 12 13 macOS does not include the Homebrew brew package by default. Install brew using the [official instructions](https://brew.sh/#install) 14 15 ### Install Cayley 16 17 ```bash 18 brew install cayley 19 ``` 20 21 ## Install Cayley with Docker 22 23 ```bash 24 docker run -p 64210:64210 cayleygraph/cayley 25 ``` 26 27 For more information see [Container Documentation](container.md) 28 29 ## Build from Source 30 31 See instructions in [Contributing](contributing.md) 32