Skip to content

Commit d3a1096

Browse files
committed
fix ollama download link
fix #10
1 parent 4a339d8 commit d3a1096

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/posts/2025/2025-03-07-installing-ollama-without-root.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Inspired by [the official guide](https://github.com/ollama/ollama/blob/main/docs
1616
```bash
1717
mkdir -p ~/src
1818
cd ~/src
19-
curl -L https://ollama.com/download/ollama-linux-amd64.tgz -o ollama-linux-amd64.tgz
19+
curl -L https://ollama.com/download/ollama-linux-amd64.tar.zst -o ollama-linux-amd64.tar.zst
2020
mkdir -p ~/opt/ollama
21-
tar -C ~/opt/ollama -xzf ollama-linux-amd64.tgz
21+
tar -C ~/opt/ollama -xzf ollama-linux-amd64.tar.zst
2222
```
2323

2424
Add Ollama to $PATH:

0 commit comments

Comments
 (0)