From 1b2d15609407fde0365218ecf7f9d917839a9ec8 Mon Sep 17 00:00:00 2001 From: Daniel Hiltgen Date: Thu, 23 May 2024 14:24:07 -0700 Subject: [PATCH] Tidy up developer guide a little --- README.md | 20 +------------------- docs/development.md | 2 ++ 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 81c0b061..76ade550 100644 --- a/README.md +++ b/README.md @@ -194,25 +194,7 @@ ollama list ## Building -Install `cmake` and `go`: - -``` -brew install cmake go -``` - -Then generate dependencies: - -``` -go generate ./... -``` - -Then build the binary: - -``` -go build . -``` - -More detailed instructions can be found in the [developer guide](https://github.com/ollama/ollama/blob/main/docs/development.md) +See the [developer guide](https://github.com/ollama/ollama/blob/main/docs/development.md) ### Running local builds diff --git a/docs/development.md b/docs/development.md index 2f7b9ecf..8c035a51 100644 --- a/docs/development.md +++ b/docs/development.md @@ -6,6 +6,8 @@ Install required tools: - go version 1.22 or higher - gcc version 11.4.0 or higher +### MacOS + ```bash brew install go cmake gcc ```