Installation
Package Managers
Section titled “Package Managers”brew install kexi/tap/vibedeno install -A --global jsr:@kexi/vibePermissions: For more security, you can specify exact permissions instead of -A:
deno install --global --allow-run --allow-read --allow-write --allow-env --allow-ffi jsr:@kexi/vibeAdd to your .mise.toml:
[tools]"jsr:@kexi/vibe" = "latest"Then run:
mise install# x64curl -LO https://github.com/kexi/vibe/releases/latest/download/vibe_amd64.debsudo apt install ./vibe_amd64.deb
# ARM64curl -LO https://github.com/kexi/vibe/releases/latest/download/vibe_arm64.debsudo apt install ./vibe_arm64.deb
# Uninstallsudo apt remove vibe# x64curl -L https://github.com/kexi/vibe/releases/latest/download/vibe-linux-x64 -o vibechmod +x vibesudo mv vibe /usr/local/bin/
# ARM64curl -L https://github.com/kexi/vibe/releases/latest/download/vibe-linux-arm64 -o vibechmod +x vibesudo mv vibe /usr/local/bin/Windows
Section titled “Windows”# DownloadInvoke-WebRequest -Uri "https://github.com/kexi/vibe/releases/latest/download/vibe-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\vibe.exe"
# Add to PATH (first time only)$path = [Environment]::GetEnvironmentVariable("Path", "User")[Environment]::SetEnvironmentVariable("Path", "$path;$env:LOCALAPPDATA", "User")Manual Build
Section titled “Manual Build”If you have Deno installed, you can compile from source:
git clone https://github.com/kexi/vibe.gitcd vibedeno compile --allow-run --allow-read --allow-write --allow-env --output vibe main.tsNext Steps
Section titled “Next Steps”After installation, set up your shell to enable vibe’s directory changing functionality.