How to install (and update!) R and RStudio

[This article was first published on R on R (for ecology), and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

One of the first steps to learning R is to have it downloaded and installed on your computer. In this post I’ll show you how to do that and how to download and install RStudio—a key tool for using R, and how I do all my work and tutorials.

If you want to follow along with a video tutorial, you can click on the image below where you can watch the first lesson in my full course on the Basics of R (for ecologists).

Video thumbnail for how to install R and Rstudio

For starters, R is a free open-source programming language used for organizing, analyzing, and visualizing data. Its versatility is highlighted by the large number of user-created packages that it comes with, which provide useful functions and guides that anyone can use (e.g., found on CRAN). So R is the programming language itself, and it comes with an environment or console that can read and execute your code. You could code in R without using RStudio, as you can see in the image below. That’s what the plain R console looks like; I just loaded up some data, viewed the first few rows, and renamed the columns.

Image showing the plain R console, with the trees dataset loaded up

By comparison, RStudio is a more versatile IDE, or Integrated Development Environment. Most people who use R also use RStudio because it provides a clean point-and-click dashboard of tools where you can type your code, view your figures, organize your data, variables, and files, as well as viewing the help window. In comparison to RStudio, the basic R IDE/console is extremely basic and doesn’t provide as many accessible tools as RStudio does.

Here I’ve set the editor color theme in RStudio to Solarized Dark, which is easier on the eyes when spending a lot of time coding in R. To change the theme, just go to RStudio –> Preferences (on a Mac) or Tools –> Options (on a Windows) and then click the Appearance tab where you can modify the Editor theme. Also check out this tutorial where I show you how to do that plus a few other useful tweaks for setting up RStudio.

Image showing the RStudio console and its greater complexity and number of tools

If you are installing R and RStudio for the first time:

To download R, go here. Choose the download link that corresponds to your computer. I have a Mac, so I clicked that link.

Image showing download options for R.

You can download RStudio here, and you want to choose “RStudio Desktop”.

The important thing when installing R and RStudio is that you need to install R before you install RStudio. If you do it in the reverse order, you will likely run into errors. All you’ll need to do is open the files you downloaded for R and RStudio, and the installation process should begin on its own.

For Mac users, there’s also something called XQuartz, which you might not need for basic coding in R, but which might be helpful down the line for running certain packages. You can download XQuartz here. Similarly, if you just open the downloaded file, XQuartz should install on its own.

If you want to update R and RStudio:

There are a few ways you can check your version of R and see whether or not it needs to be updated. One way is to run the actual R program. There, you can go to the “R” menu and click “Check for R Updates” (see image below). If you do that, R will tell you the current version you’re on, and whether or not there is a more updated version that you can download (circled in blue).

Alternatively, if you’re in RStudio, you can type and run “sessionInfo()” in the R Console. The first line that the console returns is the version of R that you’re using. You can then download and install the latest version of R here for Mac, and here for Windows.

If you’re using a Windows computer, you may need to uninstall R to update it. You can find a quick guide for that here. Another great option for Windows users is to use a package called installr (unfortunately only available for Windows, @Mac users). All you need to do is install “installr”, load up the library, and run the code “updateR()”. This function will check for newer versions and will guide you through the update process.

Image showing cursor hovering over the R menu and Check for R Updates. The text also shows the version of R that the user is on, and it shows that they need to update their R software.

If you want to update to the latest version of RStudio, hover over “Help” on the top menu bar of your Mac, and click “Check for Updates”. Then, quit the RStudio program, go to the RStudio website, and download and install the latest version. Image showing a cursor mousing over “Help” on the top menu bar and “Check for Updates” Now you should have the latest versions of R and RStudio on your computer. I hope this tutorial was helpful!

As a quick note: my “Basics of R” course uses R version 4.0.2 and RStudio version 1.3.959. There shouldn’t be any incompatibility issues if you’re running a slightly different version, but it is usually best to stay up to date with your software!


If you liked this post and want to learn more, then check out my online course on the complete basics of R for ecology:

Also be sure to check out R-bloggers for other great tutorials on learning R

To leave a comment for the author, please follow the link and comment on their blog: R on R (for ecology).

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)