freeCodeCamp/guide/english/miscellaneous/installing-devtools-and-mod.../index.md

41 lines
1.7 KiB
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
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
![:point_left:](//forum.freecodecamp.com/images/emoji/emoji_one/point_left.png?v=2 ":point_left:") Previous | ![:book:](//forum.freecodecamp.com/images/emoji/emoji_one/book.png?v=2 ":book:") Home ![:book:](//forum.freecodecamp.com/images/emoji/emoji_one/book.png?v=2 ":book:") | Next ![:point_right:](//forum.freecodecamp.com/images/emoji/emoji_one/point_right.png?v=2 ":point_right:")
[**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)