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

1.8 KiB

title localeTitle
Installing Devtools and Modern Web Browsers Instalación de Devtools y navegadores web modernos

Te mostramos cómo instalar varios lenguajes de programación, devtools y navegadores web en Ubuntu.

Herramientas ampliamente utilizadas:

Git

sudo apt-get install git 

Nodo JS

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

Rubí

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

Pitón

Python 2 y Python 3 vienen preinstalados en Ubuntu Desktop.

Modernos navegadores web

Los navegadores web más populares utilizados por los desarrolladores son Chrome / Chromium y Firefox Developer Edition .

Instalación de cromo:

sudo apt-get install chromium-browser 

Instalando 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: | Siguiente :point_right:
Jazzing hasta la Terminal | Tabla de Contenidos | Descargando editores de texto e IDE