| name | setup |
| description | Install the Expert LSP binary for the elixir-expert-lsp plugin |
Install Expert LSP
Check if Expert is installed, and install it if not.
Steps
- Check if
expert is in PATH: which expert
- If found, check version:
expert --version
- If NOT found, install via one of these methods:
Download pre-built binary (recommended)
gh release download v0.1.0-rc.6 --pattern 'expert_darwin_arm64' --repo elixir-lang/expert --dir /tmp
cp /tmp/expert_darwin_arm64 ~/.local/bin/expert && chmod +x ~/.local/bin/expert
gh release download v0.1.0-rc.6 --pattern 'expert_darwin_amd64' --repo elixir-lang/expert --dir /tmp
cp /tmp/expert_darwin_amd64 ~/.local/bin/expert && chmod +x ~/.local/bin/expert
gh release download v0.1.0-rc.6 --pattern 'expert_linux_amd64' --repo elixir-lang/expert --dir /tmp
cp /tmp/expert_linux_amd64 ~/.local/bin/expert && chmod +x ~/.local/bin/expert
- Verify:
expert --version
- Restart Claude Code to pick up the LSP server.