From 5bdc9c2ee52b5363531bf579c9558f92d5d9e381 Mon Sep 17 00:00:00 2001 From: Aqil Aziz Date: Fri, 22 May 2026 18:24:32 +0700 Subject: [PATCH] docs(installer): print Linux AppImage fallback hint (#2392) Co-authored-by: Aqil Aziz --- scripts/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 4d6ccf5fd..d3485545b 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -621,6 +621,10 @@ EOF echo "" echo "OpenHuman is ready." echo "Launch: ${app_path}" + echo "If the AppImage prints 'Interpreter not found!' or unshare/uid_map errors," + echo "try the .deb package from https://github.com/${REPO}/releases/latest" + echo "(Debian/Ubuntu) or report at https://github.com/${REPO}/issues with your" + echo "distro, kernel (uname -a), GPU driver (lspci), dmesg excerpt, and asset: ${ASSET_NAME}." echo "Uninstall: rm -f \"${app_path}\" \"${desktop_file}\"" }