Limyrx Studio IDE

Install

Limyrx Studio IDE runs as a web app in your browser, as a desktop app for macOS and Windows, and as a VS Code extension. Pick the option that fits your workflow.

Desktop App

The desktop app bundles its own browser window with native OS integration. It supports menu bar controls, global shortcuts, dock/taskbar badges, and automatic updates.

macOS

curl -L -o LimyrxStudioIDE.dmg https://github.com/limyrx/limyrx/releases/latest/download/LimyrxStudioIDE-x86_64.dmg
sudo hdiutil attach LimyrxStudioIDE.dmg
cp -R /Volumes/LimyrxStudioIDE/LimyrxStudioIDE.app /Applications/
hdiutil detach /Volumes/LimyrxStudioIDE

Or download the .dmg directly from the download page and drag to Applications.

Windows

# PowerShell (run as admin)
curl -LO https://github.com/limyrx/limyrx/releases/latest/download/LimyrxStudioIDE-x86_64.exe
.\LimyrxStudioIDE-x86_64.exe

Linux

curl -L -o limyrx-studio.AppImage https://github.com/limyrx/limyrx/releases/latest/download/LimyrxStudioIDE-x86_64.AppImage
chmod +x limyrx-studio.AppImage
./limyrx-studio.AppImage

Web App (PWA)

Open https://limyrxstudio.dev in Chrome, Edge, or Safari and click the install icon in the address bar. This installs the IDE as a standalone PWA with its own window, offline support, and local file system access via the File System Access API.

VS Code Extension

Search for "Limyrx Studio IDE" in the VS Code extensions panel, or install via CLI:

code --install-extension limyrx.studio-ide

Next Steps