From 23e86591d1ea9cca2f87a034e9490f7ef0d4a058 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Thu, 2 Oct 2025 15:27:27 +0200 Subject: [PATCH] Update README: add installation instructions for Linux and macOS using Cargo --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 6b6e1e5..9887769 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,19 @@ The OWLEN interface features a clean, multi-panel layout with vim-inspired navig (defaults to `http://localhost:11434`) - A terminal that supports 256 colors +### Installation from Source on Linux and macOS + +```bash +git clone https://somegit.dev/Owlibou/owlen.git +cd owlen +cargo install --path crates/owlen-cli +``` + +**Note**: Make sure `~/.cargo/bin` is in your PATH to run the installed binary: +```bash +export PATH="$HOME/.cargo/bin:$PATH" +``` + ### Clone and Build ```bash