From a4104d07684f93a2d6807d0ba021f035afab9816 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 6 Aug 2026 21:36:03 -0700 Subject: [PATCH] docs(website): drop zstd from the install requirements ZstdNet bundles libzstd for every RID, so nothing needs a system zstd. Verified: the 15 ManagedArchive round-trip tests pass in a container with no zstd package installed, and the build deploys runtimes//native/libzstd.* for linux-x64, linux-arm64, osx-x64, osx-arm64 and win. The apt/dnf "zstd" package is the CLI tool, which nothing shells out to. Also aligns the Fedora line to libicu rather than libicu-devel, matching the README and NativeLibraryChecker. Co-Authored-By: Claude Opus 5 (1M context) --- website/content/getting-started/installation.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/content/getting-started/installation.mdx b/website/content/getting-started/installation.mdx index 76e1a8e2a..0b4a7c3fd 100644 --- a/website/content/getting-started/installation.mdx +++ b/website/content/getting-started/installation.mdx @@ -40,7 +40,7 @@ cd modernuo`}
  • Using terminal, install Homebrew and dependencies:
  • {`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" -brew install git icu4c libdeflate zstd argon2`} +brew install git icu4c libdeflate argon2`}

    Recommended IDEs: JetBrains Rider 2025.3+ or VS Code

    Install ModernUO

      @@ -58,9 +58,9 @@ cd modernuo`}
    1. Using bash, install git and dependencies:

    Debian / Ubuntu:

    - {'sudo apt update && sudo apt install git libicu-dev libdeflate-dev zstd libargon2-dev'} + {'sudo apt update && sudo apt install git libicu-dev libdeflate-dev libargon2-dev'}

    Fedora:

    - {'sudo dnf install git libicu-devel libdeflate-devel zstd libargon2-devel'} + {'sudo dnf install git libicu libdeflate-devel libargon2-devel'}

    The exact package names may vary by distribution. Consult your distribution's package manager documentation.