# How to install R, Rstudio and tidyverse A quick tutorial to download R, Rstudio and the tidyverse package. ### RStudio Go to [Rstudio Download page](https://rstudio.com/products/rstudio/download/#download) and follow the instructions ### R Go to the [Oficial R website](https://cran.r-project.org/) and clik dowload for your system (windows, mac orlinux) ### Tidyverse Once you have installed Rstudio and R, open RStudio. Go to `File >> New File >> RScript` to create your R script Inside the script, write the following: ``` install.packages("tidyverse") library(tidyverse) ``` Press `ctrl+Enter` or `command+Enter` to execute the line of code and run the install ![](https://i.imgur.com/7rWzLSB.png) ### Now you can start coding with R! ![Alt Text](https://media.giphy.com/media/vFKqnCdLPNOKc/giphy.gif) If you have any doubts or trouble during installation, do not hesitate to contact Marta, Julia or Guillermo. We are happy to help!