Installation
FlowLayer installs two binaries:
flowlayer-serverflowlayer-client-tui
Official binaries are available on Linux, macOS, and Windows.
Prerequisites
Section titled “Prerequisites”- A local environment where you can run host processes.
Linux & macOS
Section titled “Linux & macOS”Install script (recommended)
Section titled “Install script (recommended)”curl -fsSL https://raw.githubusercontent.com/FlowLayer/distribution/main/install.sh | shHomebrew
Section titled “Homebrew”brew tap FlowLayer/distribution https://github.com/FlowLayer/distribution.gitbrew install flowlayerWindows
Section titled “Windows”Scoop (recommended)
Section titled “Scoop (recommended)”scoop bucket add flowlayer https://github.com/FlowLayer/distribution.gitscoop install flowlayerWinGet
Section titled “WinGet”winget source updatewinget install FlowLayer.FlowLayerAfter installing with WinGet, restart your terminal so the PATH update takes effect.
Chocolatey
Section titled “Chocolatey”FlowLayer is approved on Chocolatey Community and can be installed directly with Chocolatey.
choco install flowlayerVerify the install
Section titled “Verify the install”flowlayer-server --versionflowlayer-client-tui --versionExpected output:
flowlayer-server 1.1.1flowlayer-client-tui 1.1.1PATH setup
Section titled “PATH setup”install.sh installs FlowLayer binaries into ~/.local/bin for user-level installs.
If flowlayer-server or flowlayer-client-tui is not found after installation, add ~/.local/bin to your PATH.
This is only relevant for install.sh or manual user-level installs, not normally for Homebrew, Scoop, WinGet, or Chocolatey.
Bash:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrcsource ~/.bashrcZsh:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrcsource ~/.zshrcFish:
fish_add_path ~/.local/binVerify:
flowlayer-server --versionflowlayer-client-tui --versionBuild from source
Section titled “Build from source”If you want to build the official TUI client from source or contribute, start from the public repository: https://github.com/FlowLayer/tui
Next step
Section titled “Next step”Continue with First Stack for a minimal server-first run and explicit TUI connection.