Home > Back-end >  Unable to start R serve on Windows VSC
Unable to start R serve on Windows VSC

Time:12-24

I have installed the following extensions to VSC running on Windows: R, R Debugger, and R Tools. Nevertheless, when R server tries to start, I get this error message: Error in loadNamespace(x) : there is no package called 'languageserver'.

I haven't found how to get and install such package. Thanks for your help.

CodePudding user response:

languageserver is a regular R package. Install it from CRAN with install.packages("languageserver"), like with any other package.

  • Related