DEV Community

Harsh
Harsh

Posted on

How to setup Void IDE in Linux

What Is Void IDE?

Void IDE is an open-source alternative to Cursor, licensed under Apache 2.0 and hosted on GitHub. It was born as a fork of the VS Code codebase, retaining full extension and theme compatibility so you can migrate seamlessly. Void ships with Agent Mode (full read/write file operations), Gather Mode (read-only code exploration), and standard AI-powered completions—all locally controlled.


Prerequisites

Before installing Void IDE, make sure you have the following:

  1. Ubuntu 18.04+ (Desktop or Server).
  2. A user with sudo privileges.
  3. 200 MB of free disk space for the IDE itself.
  4. Ollama installed and running locally for LLM hosting:
  • Install via Homebrew:

     brew install ollama
    
  • Or via the official Linux script:

     curl https://ollama.com/install.sh | sh
    
  • Verify and pull a model (e.g., llama2):

     ollama pull llama2
     ollama run llama2 --prompt "Hello"
    
  • Ensure the Ollama daemon is running:

     ollama daemon start
    

Quick Install on Ubuntu

  1. Download the latest Linux .deb from GitHub Releases (e.g. void_1.99.30034_amd64.deb).

Download Link: https://github.com/voideditor/binaries/releases

  1. Install with APT to auto-resolve dependencies:
   cd ~/Downloads
   sudo apt update
   sudo apt install ./void_1.99.30034_amd64.deb
Enter fullscreen mode Exit fullscreen mode

Void vs. Cursor AI: Pros & Cons

Void IDE Cursor AI
Source & Privacy Fully open source under Apache 2.0—audit the code, self-host your models, and keep all data in your infrastructure. Proprietary; code and prompts typically go through Cursor’s managed service unless you opt—and pay—for enterprise hosting.
Model Flexibility Connect any LLM—open-source or commercial—without vendor lock-in. Provides a curated frontier-model backend with SLA guarantees but limited ability to swap in your own LLMs.
Cost Free to use, no subscription or usage fees. Subscription-based; costs scale with usage and seats, potentially expensive for heavy users.
Ecosystem Leverages the vast VS Code extension marketplace, but smaller community around AI-specific plugins. Rich, first-party integrations (Composer, diff viewers, built-in agents) with deeper AI features out of the box.
Stability & Polish Early-stage UX; occasional rough edges and less extensive documentation. Mature, polished UI and streamlined onboarding optimized for rapid productivity.
Community Community-driven roadmaps; rapid iteration on GitHub with weekly contributor meetups. Backed by Anysphere with deep pockets (recent \$9 bn valuation); robust support but less direct community control.

Windows is Easy just install MSI package from github release and one click install.


Happy Coding 🤘

Top comments (2)

Collapse
 
pravin_sukumaran_f0540a3a profile image
pravin sukumaran

after this command:
sudo apt install ./void_1.99.30034_amd64.deb
How do you launch it ?

Collapse
 
hpnightowl profile image
Harsh

hi @pravin sukimaran

it will be installed in your app library ( application tray you can launch it after install ) or you can use

void . ( to launch the current dir)