---
title: Downloading Text Editors and Ides
---
We discuss popular Text Editors and IDEs and how to install them on Ubuntu.
## Popular choices:
### Text Editors
**Installing Atom:**
    sudo add-apt-repository ppa:webupd8team/atom
    sudo apt-get update
    sudo apt-get install atom
**Installing Sublime Text 3:**
    sudo add-apt-repository ppa:webupd8team/sublime-text-3
    sudo apt-get update
    sudo apt-get install sublime-text-installer
**Installing Visual Studio Code:**
Download the latest Visual Studio Coder package: Visual Studio
    sudo dpkg -i vscode-amd64.deb
### IDEs
**Installing Eclipse:**
    sudo apt-get install openjdk-7-jdk
Download the latest Eclipse package: Eclipse
    sudo mv eclipse-inst-linux64.tar.gz /opt/ && cd /opt
    sudo tar -xvf eclipse-inst-linux64.tar.gz
Create a new file called `eclipse.desktop` in the `/usr/share/applications/` directory and add the lines below:
    Desktop Entry]
    Name=Eclipse 
    Type=Application
    Exec=/opt/eclipse/eclipse
    Terminal=false
    Icon=/opt/eclipse/icon.xpm
    Comment=Integrated Development Environment
    NoDisplay=false
    Categories=Development;IDE
    Name[en]=eclipse.desktop
You can now drag this file to the launcher, enabling you to start Eclipse.
**Installing Intellij IDEA:**
Download the latest version of [**Intellij IDEA**
    sudo mv idea-2016.1.1.tar.gz /opt/ && cd /opt
    sudo tar -xvf idea-2016.1.1.tar.gz
 Previous |  Home  | Next   
[**Installing DevTools and modern web browsers**](//forum.freecodecamp.com/t/installing-devtools-and-modern-web-browsers/18385) | [**Table of Contents**](//forum.freecodecamp.com/t/setting-up-ubuntu-for-programming/18388) | [**Alternatives to popular Windows and Mac software**](//forum.freecodecamp.com/t/alternatives-to-popular-windows-and-mac-software/18387)