3
Hello. I installed VS Code 1.31. I do not understand why the editor is not recognizing Rscript in "output", since in "terminal", it is recognizing R. Follow the code in Settings.json. What I can’t see?
{
"r.rpath.lsp": "C:\\\\Program Files\\\\R\\\\R-3.5.2\\\\bin\\\\64\\\\R.exe",
"r.interpreter": 1,
"r.rterm.windows": "C:\\\\Program Files\\\\R\\\\R-3.5.2\\\\bin\\\\64\\\\R.exe",
}
I appreciate all your help.
Take a look at your
PATH
from the terminal. It will probably be that it is stopping atbin
or inx64
. TheR
and theRscript
are different programs, so theRscript
should not be working on Vscode, but theR
must be working.– Tomás Barcellos
Thanks for the feedback. I will look yes.
– user83138