languageserver
An implementation of the Language Server Protocol for R
First, open the R app on your computer. In that window, enter the following command into the R console:
install.packages("languageserver")It will then prompt you to choose a CRAN server. Select the same one you did when you downloaded R. Then, the installation will begin. You should see the R console printing text as it installs.
Now the languageserver package is installed. However, in order for it to run properly, you must install another package, which the languageserver package requires us to have. To install it, enter this command, same way as before:
install.packages("callr")Now you have the languageserver package for R installed and ready.
Last updated