From 5e9255b3d5df8b0fd81287fa5b02a2c489502894 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 1 Jan 2026 07:31:33 +0000 Subject: [PATCH] docs: Restructure binary installation to reduce redundancy Co-authored-by: Benexl <81157281+Benexl@users.noreply.github.com> --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a70e82c..d95b5e2 100644 --- a/README.md +++ b/README.md @@ -76,14 +76,17 @@ The easiest way to get started is to download a pre-built, self-contained binary **Installation Steps:** 1. Download the appropriate binary for your platform from the [**releases page**](https://github.com/viu-media/viu/releases/latest). -2. **Linux/macOS:** Make it executable and move to PATH: +2. **Linux/macOS:** Make it executable: ```bash - # Example for Linux (adjust binary name for your platform) + # Replace with the actual binary name you downloaded chmod +x viu-linux-x86_64 + ``` + Then move it to a directory in your PATH: + ```bash + # Option 1: System-wide installation (requires sudo) sudo mv viu-linux-x86_64 /usr/local/bin/viu - # Or to a user directory - chmod +x viu-linux-x86_64 + # Option 2: User directory installation mkdir -p ~/.local/bin mv viu-linux-x86_64 ~/.local/bin/viu # Make sure ~/.local/bin is in your PATH