I can't find a way to use various versions of the R kernel in VS code and be able to change between them easily. Obviously uninstalling one kernel version (e.g 4.0.0) and installing another (3.6.0) one is not a practical option.
I already have installed:
Jupyter Extension for Visual Studio Code (essential)
R Extension for Visual Studio Code (optional)
library(IRkernel) (essential as highlighted here)
library(languageserver) (optional)
It works well for my default system R kernel (latest version). but how can I easily swap among other older versions I also have installed and have to use to run older projects with older library requirements ?
Top right of VS code one can change among different version of the python kernel, but only one kernel is shown up for R and it defaults to the system installation /usr/lib/R/bin/R
How can I add more?