ollama/docs/development.md

40 lines
550 B
Markdown
Raw Normal View History

2023-06-27 17:46:46 +00:00
# Development
- Install cmake or (optionally, required tools for GPUs)
- run `go generate ./...`
- run `go build .`
2023-07-07 16:59:24 +00:00
Install required tools:
2023-06-27 17:46:46 +00:00
- cmake version 3.24 or higher
- go version 1.20 or higher
- gcc version 11.4.0 or higher
```bash
brew install go cmake gcc
2023-06-27 17:46:46 +00:00
```
Get the required libraries:
```bash
go generate ./...
```
Then build ollama:
2023-06-27 17:46:46 +00:00
```bash
go build .
2023-06-27 17:46:46 +00:00
```
2023-07-07 16:59:24 +00:00
Now you can run `ollama`:
2023-06-27 17:46:46 +00:00
```bash
2023-07-07 16:59:24 +00:00
./ollama
2023-06-27 17:46:46 +00:00
```
## Building on Linux with GPU support
- Install cmake and nvidia-cuda-toolkit
2023-09-20 19:15:23 +00:00
- run `go generate ./...`
- run `go build .`