Installation
Download and install Plexus on your machine.
Plexus is available for macOS, Windows, and Linux.
Download
Visit the GitHub Releases page and download the appropriate version for your platform:
macOS
| Chip | File |
|---|---|
| Apple Silicon (M1/M2/M3/M4) | Plexus-{version}-arm64.dmg |
| Intel | Plexus-{version}-x64.dmg |
Windows
| Format | File |
|---|---|
| Installer | Plexus-{version}-setup.exe |
| Portable | Plexus-{version}-win.zip |
Linux
| Format | File |
|---|---|
| AppImage | Plexus-{version}.AppImage |
| Debian/Ubuntu | Plexus-{version}.deb |
| Fedora/RHEL | Plexus-{version}.rpm |
| Arch Linux | Plexus-{version}.pacman |
macOS Installation
- Download the
.dmgfile for your Mac - Open the DMG file
- Drag Plexus to your Applications folder
- Open Plexus from Applications
First Launch Security
When you first open Plexus, macOS may show a security warning because the app is not notarized. To allow Plexus to run:
- Go to System Settings > Privacy & Security
- Scroll down to find the message about Plexus
- Click Open Anyway
Alternatively, right-click the app and select "Open" from the context menu.
Windows Installation
- Download the
.exeinstaller - Run the installer and follow the prompts
- Launch Plexus from the Start Menu
Linux Installation
AppImage
chmod +x Plexus-*.AppImage
./Plexus-*.AppImageDebian/Ubuntu
sudo dpkg -i Plexus-*.debFedora/RHEL
sudo rpm -i Plexus-*.rpmBuild from Source
If you prefer to build from source:
Prerequisites
- Node.js 20 or later
- pnpm 10 or later
Steps
# Clone the repository
git clone https://github.com/JinmuGo/plexus.git
cd plexus
# Install dependencies
pnpm install
# Build the application
pnpm build
# Run in development mode
pnpm dev
# Or run the production build
pnpm startCreate Distributable
# Build for your current platform
pnpm make:releaseThe built application will be in the dist/ directory.
Automatic Hook Installation
When Plexus launches for the first time, it automatically installs hook scripts for supported AI agents:
- Claude Code: Hooks added to
~/.claude/settings.json - Cursor: Hooks configured in Cursor's settings
- Gemini CLI: Hooks set up for Gemini integration
No manual configuration is required. Just start using your AI agents as normal, and Plexus will detect them automatically.
Verify Installation
- Launch Plexus
- Open a terminal and start an AI agent (e.g.,
claude) - The agent should appear in the Plexus dashboard within seconds
Data Locations
Plexus stores data in the following locations:
| Platform | Application Data | Hooks & Config |
|---|---|---|
| macOS | ~/Library/Application Support/plexus/ | ~/.plexus/ |
| Windows | %APPDATA%\plexus\ | %USERPROFILE%\.plexus\ |
| Linux | ~/.config/plexus/ | ~/.plexus/ |
Updating
To update Plexus:
- Download the latest version from GitHub Releases
- Install it over the existing version
Your data and settings will be preserved.
Uninstalling
macOS
- Move Plexus from Applications to Trash
- Optionally remove data:
rm -rf ~/.plexus ~/Library/Application\ Support/plexus
Windows
- Uninstall from Settings > Apps
- Optionally remove data:
rmdir /s %USERPROFILE%\.plexus %APPDATA%\plexus
Linux
# Remove the application
sudo apt remove plexus # or rpm -e, etc.
# Optionally remove data
rm -rf ~/.plexus ~/.config/plexusNext Steps
Now that Plexus is installed, continue to the Quick Start guide to learn the basics.