R Commander installation in R on macOS

Table of Contents
Motivation
Whether working or studying everybody uses various sorts and types of software on their computer. Students taking Statistical Courses, as taught by the Mathematical and Statistical Methods group at Wageningen University & Research, will most likely use R. Students enrolled in MAT-14303 Basic Statistics, MAT-15303 Statistics 1, MAT-15403 Statistics 2 and MAT-20306 Advanced Statistics (first two weeks of this course) will use R Commander instead of basic R. Therefore, they will need to install R Commander.
In the text some symbol combinations are used for shortcuts, the following table explains the meaning of these symbols in relation to specific keys on your keyboard. To use the shortcuts press the keyboard keys simultaneously, e.g. ⇧⌘A means ⇧+⌘+A.
Icon | Keyboard Meaning | Icon | Keyboard Meaning | |||
---|---|---|---|---|---|---|
⌘ | command | ⇪ | caps lock | |||
⌥ | option (or alt) | ↩ | carriage return (return/enter) | |||
⌃ | control | ⌫ | delete/backspace | |||
fn | function | ⌦ | forward delete (fn + ⌫) | |||
⇧ | shift (either left or right) | ⎋ | escape |
R Commander Installation
Prior requirements for the R Commander installation within R on macOS:
To be able to install R Commander you will need to have both R installed and configured as well as have XQuartz installed first. If you haven’t done so already, please read the (re-)install and configure R on macOS as well as the XQuartz installation on macOS posts (use the links above to go to those specific posts) before continuing with this post.
The screenshots in this post are based on R version 3.6.3. However, the procedure and steps described are still correct for higher versions of R.
To install R commander on macOS perform the following steps:
- Start the R application from Finder > Applications (shortcut: ⇧⌘A) or via Launchpad. The icon representing the R application is shown in Figure 1 below.

- The R Console will open, as shown below in Figure 2, and the cursor will be ready for input behind the prompt, as indicated by the
>
sign.

- In case the ‘command line developer tools’ requirement window appears as shown in Figure 3 below, click ‘Cancel’ to make it disappear. There is no need to install it!

- Navigate the mouse pointer to the menu bar click on ‘Packages & Data’ and select the ‘Package Installer’ (shortcut: ⌥⌘I). This will cause the R Package Installer to open as shown below in Figure 4.

- First click on the ‘Get List’ to retrieve the available packages on the CRAN mirror. Next type
Rcmdr
in the ‘Package Search’ field and press return (↩) to execute the search. Select theRcmdr
package in the results list underneath by clicking on it, which will make it turn blue to indicate the selection. In the last block named ‘Install Location’ select the radio button ‘At User Level’ and tick the checkbox ‘Install Dependencies’. When the ‘Package Installer’ window matches the one shown in Figure 4 above, you click the ‘Install Selected’ button. - Loads of packages will be downloaded and installed. When the installation has finished, the ‘Package Installer’ will resemble the image shown below in Figure 5.

- Now select the
RcmdrPlugin.HH
. Make sure your ‘Install Location’ is still set to ‘At User Level’ and that the checkbox ‘Install Dependencies’ is still ticked, before clicking the ‘Install Selected’ button.
Once the installation of the RcmdrPlugin.HH
package has finised, you are ready to use R Commander for the first time 😆.
First time use of R Commander
To start R Commander from the R Console, type the command library(Rcmdr)
behind the prompt, as indicated by the >
sign, and and press return (↩) to execute. This will cause R Commander to be started.
Packages & Data
> Packages Manager
in the top bar menu of R and marking the tick box in front of the Rcmdr
package, many users experience that R Commander fails to show the menu items in the top bar menu of R Commander. This is resolved by starting R Commander by explicitly type the command library(Rcmdr)
at the prompt and executing by pressing return (↩) instead of using the graphical user interface of R to load the Rcmdr
package.
The first time you start R Commander, you will see at the bottom of the main R Commander window in the ‘Messages’ section the message as shown in Figure 6 below.

The warning is referring to a feature that was added to macOS in 2013, which is called App Nap. App Nap puts programs you are not currently actively using or looking at into ‘sleep’ mode, blocking them from using system resources, especially the CPU, until you focus on them again. It will cause R Commander to work not very smoothly, because the R application is being put to ‘sleep’ as it is running in the background of R Commander. R Commander will at moments work with a huge lag time, which will feel like it is frozen and not responding.
Solving this problem will ask quite a bit of your patience! Fortunately you only have to do this once, afterwards R Commander will work smoothly every time you start it.
Perform the following steps:
- Navigate the mouse pointer to the top menu of the R Commander window and click on ‘Tools’. Patiently wait until the menu unfolds as shown below in Figure 7. Only click once and wait patiently!

- Next move the mouse pointer to the menu item ‘Manage Mac OS X app nap for R.app…’ and click on it. Again only click once and wait patiently! This will open the ‘Mac OS X app nap for R.app’ window to open as shown below in Figure 8.

- Select the radio button ‘off (recommended)’. Wait for the selection to change. After the change occurs, click on ‘OK’ to confirm.
- Navigate the mouse pointer to the top menu of the R Commander window and click on ‘File’. Wait patiently for the menu item to unfold. Navigate to ‘Exit’ > ‘From Commander’ and click only once it. Wait for the ‘Exit?’ window to appear and click ‘OK’. This closes R Commander.
- Click on the R Console window to make it the active application.
- Quit the R application either by:
- Typing
q()
orquit()
behind the R Console prompt (indicated by the>
sign) and pressing return (↩) to execute. - Using the keyboard shortcut: ⌘Q
- Navigating the mouse pointer to the menu bar and clicking ‘R’ > ‘Quit R’
- Navigation the mouse pointer to the top left corner of the R Console window and clicking on the red ball
- Typing
- No matter what you choose, you will always be asked whether you want to save a workspace image as shown below in Figure 9. Just click on the ‘Don’t Save’ button to end the R application.

library(Rcmdr)
command, the ‘Messages’ section will display the following or a similar message: [1] NOTE: R Commander Version 2.9-1:
followed by the day, date and time. Now R Commander will work smoothly.
Alternative way of starting R Commander without the App nap problem
As an alternative to switching off the App Nap for the R application you could start R from a Terminal.
This is done by following these steps:
- Open the Terminal application from Finder > Applications > Utilities (shorcut: ⇧⌘U) or via Lauchpad under the ‘Other’ group. The terminal console prompt, where the commands will be entered, is depicted by a
%
or a$
sign. Which sign is shown, depends whether your default shell is zsh (%
sign) or bash ($
sign). - Type
R
behind the prompt in the terminal console and press return (↩) to execute the command. - This will start R and the prompt, where the commands will be entered for R, will have changed into a
>
sign. - Type the command
library(Rcmdr)
behind the prompt, as indicated by the>
sign, and and press return (↩) to execute. This will cause R Commander to be started. The ‘Messages’ section at the bottom of R Commander will display the following or a similar message:[1] NOTE: R Commander Version 2.9-1:
followed by the day, date and time. This means that R Commander will work smoothly!
Quitting R Commander will return you to the terminal console, which can be recognized by the prompt sign changing back into a %
or $
sign.
To quit the active terminal console by typing exit
and pressing return (↩) to execute. To quit the Terminal application completely you can use the keyboard shortcut: ⌘Q or navigate the mouse pointer to the menu bar and click ‘Terminal’ > ‘Quit Terminal’.
Restarting R Commander
In case R Commander crashes while using it, you will need to resart it. However, in the R Console or in the active terminal console currently running R, the library(Rcmdr)
command will not restart R Commander.
The reason is, that the R Commander package is still loaded and first needs to be detached. To detach the R Commander package you can copy (⌘C) the following command:
detach("package:Rcmdr", unload = TRUE)
paste (⌘V) it behind the prompt in the R console (indicated by a >
sign) and press return (↩) to execute the command.
Now R Commander can be restarted by using the library(Rcmdr)
command as before.