Created
October 28, 2025 13:59
-
-
Save meena-erian/019cdb32af15eb733d7a9265ccde012a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install -y curl unzip locales jq ca-certificates | |
| sudo locale-gen en_US.UTF-8 | |
| export LANG=en_US.UTF-8 | |
| ARCH=$(uname -m) # x86_64 on Intel/AMD, aarch64 on ARM | |
| curl -fsSL "https://desktop-release.q.us-east-1.amazonaws.com/latest/q-${ARCH}-linux-musl.zip" -o q-musl.zip | |
| unzip -o q-musl.zip | |
| cd q | |
| ./install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment