R es un lenguaje de programación de código abierto que se especializa en informática estadística y gráficos. En este tutorial, instalaremos R en un servidor Ubuntu 20.04.
Para obtener una versión más detallada de este tutorial, con más explicaciones de cada paso, consulte Cómo instalar R en Ubuntu 20.04.
Tras iniciar sesión en su servidor Ubuntu 20.04 como usuario sudo no root, añada la clave GPG relevante.
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
- sudo add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu focal-cran40/'
Si no está usando 20.04, busque el repositorio relevante desde la lista R Project Ubuntu,denominado para cada versión.
- sudo apt update
- sudo apt install r-base
Inicie la shell interactiva de R como root.
- sudo -i R
Debería obtener un resultado similar al siguiente:
Output
R version 4.0.0 (2020-04-24) -- "Arbor Day"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>
Esto confirma que hemos instalado correctamente R e introducido su shell interactiva.
Aquí tiene enlaces a tutoriales más detallados relacionados con esta guía:
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up nowThis textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!