Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions to easily install specific versions on faq.md #4084

Merged
merged 5 commits into from
Jun 9, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ On Linux, re-run the install script:
curl -fsSL https://ollama.com/install.sh | sh
```

## How can I install a specific version of Ollama?
Napuh marked this conversation as resolved.
Show resolved Hide resolved

On Linux, you can run the install script and setting the `VER_PARAM` environment variable to whatever version you want to install. You can find the version numbers in the [Github's release page](https://github.com/ollama/ollama/releases).

For example:

```
curl -fsSL https://ollama.com/install.sh | VER_PARAM=0.1.32 sh
```

## How can I view the logs?

Review the [Troubleshooting](./troubleshooting.md) docs for more about using logs.
Expand Down