Wrigs

Install EOS Code editor

Dec 14th, 2025
5,579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | Software | 0 0
  1. Elementary OS's default code editor (formerly known as Scratch, now simply called Code) is a lightweight, GTK-based editor tailored for the Pantheon desktop environment.
  2. It's not available as a standard package in Linux Mint's repositories, and it's not distributed via Flatpak on Flathub or elementary's own Flatpak repo. The easiest and most reliable ways to install it on Linux Mint (which is Ubuntu-based) are:
  3.  
  4. 1. Recommended: Install via the elementary OS Daily PPA
  5. This provides pre-built .deb packages and is the simplest method, though note that the "daily" PPA builds from the latest development branch (potentially less stable than releases).
  6.  
  7. Run these commands in the terminal:
  8.  
  9. sudo apt update
  10. sudo apt install software-properties-common
  11. sudo add-apt-repository ppa:elementary-os/daily
  12. sudo apt update
  13. sudo apt install io.elementary.code
  14.  
  15. After installation, launch it by searching for "Code" in the menu or running io.elementary.code in the terminal.
  16.  
  17. To remove it later (if needed):
  18.  
  19. sudo apt remove io.elementary.code
  20. sudo add-apt-repository -r ppa:elementary-os/daily
  21. sudo apt update
  22.  
  23. There's also a "stable" PPA (ppa:elementary-os/stable), but it may not always have the latest version of Code.
Advertisement