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

1.8 KiB
Raw Blame History

title localeTitle
Installing Devtools and Modern Web Browsers Instalando Devtools e navegadores da Web modernos

Nós mostramos-lhe como instalar várias linguagens de programação, devtools e navegadores web no Ubuntu.

Ferramentas amplamente utilizadas:

Git

sudo apt-get install git 

Nó JS

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash 
 nvm install stable 

Rubi

curl -sSL https://get.rvm.io | bash -s stable 
 rvm install 2.3.1 

Python

Python 2 e o Python 3 vêm pré-instalados no Ubuntu Desktop.

Navegadores da Web modernos

Os navegadores mais populares usados pelos desenvolvedores são o Chrome / Chromium e o Firefox Developer Edition .

Instalando o Chromium:

sudo apt-get install chromium-browser 

Instalando o Firefox Developer Edition:

sudo add-apt-repository ppa:ubuntu-mozilla-daily/firefox-aurora 
 sudo apt-get update 
 sudo apt-get install firefox 

:point_left: Anterior | :book: Casa :book: | Próximo :point_right:
Jazzing up the Terminal | Índice | Download de editores de texto e IDEs