Installation
هذا المحتوى غير متوفر بلغتك بعد.
Installation
Section titled “Installation”Install ɳSelf v1.1.1 on macOS, Linux, or Windows (WSL2). The CLI is a single Go binary distributed via GitHub Releases, Homebrew, and a one-line installer.
Contents
Section titled “Contents”Prerequisites
Section titled “Prerequisites”- Docker 24 or later
- Docker Compose v2 (included with Docker Desktop)
- curl and bash (for the Linux installer)
Install via Homebrew using the official tap:
brew install nself-org/nself/nselfThis installs the latest stable release and keeps it up to date with brew upgrade.
Install with the official installer script:
curl -sSL https://install.nself.org | bashThe script detects your architecture (amd64 or arm64), downloads the appropriate binary, and places it in /usr/local/bin.
Manual Install
Section titled “Manual Install”- Download the binary for your platform from GitHub Releases.
- Make it executable and place it on your
PATH:
chmod +x nself-linux-amd64sudo mv nself-linux-amd64 /usr/local/bin/nselfVerify Installation
Section titled “Verify Installation”nself versionExpected output:
nself v1.1.1 (linux/amd64)Uninstall
Section titled “Uninstall”Homebrew:
brew uninstall nselfLinux / manual:
sudo rm /usr/local/bin/nselfrm -rf ~/.nselfThis removes the CLI binary and the local state directory. Your project .env files and Docker volumes are not touched.
Next: Quick Start · First Project