Front-Ends, GUI for Ollama
- Msty (Application)
- Open WebUI (Application)
- Page Assist (Web browser extension)
Free course of Ollama by Matt Williams
- Introduction to the Ollama Course
- Getting Started on Ollama
- Installing Ollama
- How to use the Ollama.com site to Find Models
- Using the CLI
Install Ollama
Download Ollama from the official website.
- Download for macOS
- Download for Linux | Install:
curl -fsSL https://ollama.com/install.sh | sh - Download for Windows
Uninstall Ollama On Linux
To uninstall Ollama on Linux, follow these steps:
1. Stop the Ollama service:
sudo systemctl stop ollama
This command halts the Ollama service.
2. Disable the Ollama service to prevent it from starting automatically on boot:
sudo systemctl disable ollama
This ensures that Ollama won’t automatically start up in the future.
3. Remove the Ollama service file from the systemd directory:
sudo rm /etc/systemd/system/ollama.service
This deletes the service file from your system.
4. Remove the Ollama binary from your system. Depending on where it was installed, run one of the following commands:
sudo rm $(which ollama)
This command removes the binary from your bin directory.
5. Delete the directory where Ollama stores its models and any associated user and group accounts:
sudo rm -r /usr/share/ollamasudo userdel ollamasudo groupdel ollamaThese commands delete any downloaded models and remove the Ollama user and group from your system.
After completing these steps, you can verify that Ollama has been successfully uninstalled by checking for any remaining files or services. You can use the following command to check if the service is still listed:
systemctl list-units --type=service | grep ollama
If no results are returned, the uninstallation was successful.
Links
- Running AI Locally Using Ollama on Ubuntu Linux Running AI locally on Linux.
- This Chrome Extension Surprised Me Video about Page Assist browser extension.