mirror of
https://github.com/ollama/ollama.git
synced 2025-03-26 17:51:48 +01:00
22 lines
263 B
Markdown
22 lines
263 B
Markdown
# Desktop
|
|
|
|
This app builds upon Ollama to provide a desktop experience for running models.
|
|
|
|
## Developing
|
|
|
|
First, build the `ollama` binary:
|
|
|
|
```shell
|
|
cd ..
|
|
go build .
|
|
```
|
|
|
|
Then run the desktop app with `npm start`:
|
|
|
|
```shell
|
|
cd macapp
|
|
npm install
|
|
npm start
|
|
```
|
|
|