Linux uninstall instructions (#894)

This commit is contained in:
Bruce MacDonald 2023-10-24 14:07:05 -04:00 committed by GitHub
parent b0c9cd0f3b
commit cecf83141e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,3 +80,23 @@ To view logs of Ollama running as a startup service, run:
```bash
journalctl -u ollama
```
## Uninstall
Remove the ollama service:
```bash
systemctl stop ollama
systemctl disable ollama
rm /etc/systemd/system/ollama.service
```
Remove the ollama binary from your bin directory (either `/usr/local/bin`, `/usr/bin`, or `/bin`):
```bash
rm /usr/local/bin/ollama
```
Remove the downloaded models and Ollama service user:
```bash
rm /usr/share/ollama
userdel ollama
```