Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ Or using [Homebrew](https://brew.sh/) (see {ref}`warning note <homebrew-warning>
```bash
brew install llm
```
Or for NixOS users, example for `configuration.nix` with Ollama plugin:
> See the [Nix source file](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/python-modules/llm/default.nix) for available plugins, make sure to match the branch to your `nixpkgs` version
```nix
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# other packages here
# ...
# install with llm and its plugins
(llm.withPlugins ({
llm-ollama = true;
}))
]
}
```

## Upgrading to the latest version

Expand Down