Written by Jakub Rusinowski · Last updated July 10, 2026
Ollama is the easiest tool to get started with local LLMs. It packages the model weights, configuration, and a runtime engine into a single binary.
Ollama is the easiest tool to get started with local LLMs. It packages the model weights, configuration, and a runtime engine into a single binary.
1. Download Ollama for Windows. 2. Run the .exe installer. 3. Once installed, Ollama runs in the background (check your system tray).
1. Download Ollama for macOS. 2. Unzip the file and move Ollama to your Applications folder. 3. Open the application. You might need to approve it in 'Security & Privacy' settings if prompted.
Run the following command in your terminal:
curl -fsSL https://ollama.com/install.sh | sh
Ollama works from the command line (Terminal on Mac/Linux, PowerShell/CMD on Windows).
To download and run the popular Llama 3.1 8B model, simply type:
ollama run llama3.1
Ollama will: 1. Pull the model manifest. 2. Download the model layers (approx 4.7 GB). 3. Verify the hash. 4. Drop you into a chat prompt >>>.
You can now chat! Type 'Why is the sky blue?' and hit Enter.
| Command | Description |
|---|---|
ollama list | Show all models installed on your machine. |
ollama pull [model] | Download a model but don't run it immediately. |
ollama rm [model] | Remove a model to free up disk space. |
ollama serve | Start the Ollama background service manually. |
sudo systemctl start ollama).Now that you have Ollama running, check out the Model Library to find models to download.