-
Notifications
You must be signed in to change notification settings - Fork 2
Ubuntu Downloading Text Editors and IDEs
We discuss popular Text Editors and IDEs and how to install them on Ubuntu.
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
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 | Table of Contents | Alternatives to popular Windows and Mac software |
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links