41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|   | --- | ||
|  | title: Installing Devtools and Modern Web Browsers | ||
|  | --- | ||
|  | We show you how to install various programming langauges, devtools and web browsers on Ubuntu. | ||
|  | 
 | ||
|  | ## Widely used tools:
 | ||
|  | 
 | ||
|  | ### Git
 | ||
|  | 
 | ||
|  |     sudo apt-get install git | ||
|  | 
 | ||
|  | ### Node JS
 | ||
|  | 
 | ||
|  |     curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash | ||
|  |     nvm install stable | ||
|  | 
 | ||
|  | ### Ruby
 | ||
|  | 
 | ||
|  |     curl -sSL https://get.rvm.io | bash -s stable | ||
|  |     rvm install 2.3.1 | ||
|  | 
 | ||
|  | ### Python
 | ||
|  | 
 | ||
|  | `Python 2` and `Python 3` come pre-installed on Ubuntu Desktop. | ||
|  | 
 | ||
|  | ### Modern Web Browsers
 | ||
|  | 
 | ||
|  | The most popular web browsers used by developers are <a href='https://www.google.com/chrome/' target='_blank' rel='nofollow'>Chrome</a>/<a href='https://www.chromium.org/' target='_blank' rel='nofollow'>Chromium</a> and <a href='https://www.mozilla.org/firefox/developer/' target='_blank' rel='nofollow'>Firefox Developer Edition</a>. | ||
|  | 
 | ||
|  | **Installing Chromium:** | ||
|  | 
 | ||
|  |     sudo apt-get install chromium-browser | ||
|  | 
 | ||
|  | **Installing Firefox Developer Edition:** | ||
|  | 
 | ||
|  |     sudo add-apt-repository ppa:ubuntu-mozilla-daily/firefox-aurora | ||
|  |     sudo apt-get update | ||
|  |     sudo apt-get install firefox | ||
|  | 
 | ||
|  |  Previous |  Home  | Next    | ||
|  | [**Jazzing up the Terminal**](//forum.freecodecamp.com/t/jazzing-up-the-terminal/18386) | [**Table of Contents**](//forum.freecodecamp.com/t/setting-up-ubuntu-for-programming/18388) | [**Downloading Text Editors and IDEs**](//forum.freecodecamp.com/t/downloading-text-editors-and-ides/18384) |