From 41aca5c2d07b0331326e4e4efe884b51cfe789db Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Mon, 19 Feb 2024 21:11:01 -0500 Subject: [PATCH] Update faq.md --- docs/faq.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index f43af868..8f345776 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -2,7 +2,13 @@ ## How can I upgrade Ollama? -To upgrade Ollama, run the installation process again. On the Mac, click the Ollama icon in the menubar and choose the restart option if an update is available. +Ollama on macOS and Windows will automatically download updates. Click on the taskbar or menubar item and then click "Restart to update" to apply the update. Updates can also be installed by downloading the latest version [manually](https://ollama.com/download/). + +On Linux, re-run the install script: + +``` +curl -fsSL https://ollama.com/install.sh | sh +``` ## How can I view the logs? @@ -164,4 +170,4 @@ curl http://localhost:11434/api/generate -d '{"model": "llama2", "keep_alive": - To unload the model and free up memory use: ```shell curl http://localhost:11434/api/generate -d '{"model": "llama2", "keep_alive": 0}' -``` \ No newline at end of file +```