mirror of
https://github.com/ollama/ollama.git
synced 2026-05-13 14:27:00 +00:00
docs: fix tar decompression flags
This commit is contained in:
parent
ff23dd343f
commit
b43a4b6268
1 changed files with 4 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ Download and extract the package:
|
|||
|
||||
```shell
|
||||
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \
|
||||
| sudo tar x -C /usr
|
||||
| sudo tar --zstd -x -C /usr
|
||||
```
|
||||
|
||||
Start Ollama:
|
||||
|
|
@ -42,7 +42,7 @@ If you have an AMD GPU, also download and extract the additional ROCm package:
|
|||
|
||||
```shell
|
||||
curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tar.zst \
|
||||
| sudo tar x -C /usr
|
||||
| sudo tar --zstd -x -C /usr
|
||||
```
|
||||
|
||||
### ARM64 install
|
||||
|
|
@ -51,7 +51,7 @@ Download and extract the ARM64-specific package:
|
|||
|
||||
```shell
|
||||
curl -fsSL https://ollama.com/download/ollama-linux-arm64.tar.zst \
|
||||
| sudo tar x -C /usr
|
||||
| sudo tar --zstd -x -C /usr
|
||||
```
|
||||
|
||||
### Adding Ollama as a startup service (recommended)
|
||||
|
|
@ -147,7 +147,7 @@ Or by re-downloading Ollama:
|
|||
|
||||
```shell
|
||||
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \
|
||||
| sudo tar x -C /usr
|
||||
| sudo tar --zstd -x -C /usr
|
||||
```
|
||||
|
||||
## Installing specific versions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue