You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code needs to identify the same version of R that the users have configured. This is passed in from the extension, but the backend code does not use this value consistently. To solve this, we need to make sure the correct path is identified, following our rules:
Use the passed-in path for the R interpreter if supplied. It must exist and be validated)
If it doesn't exist, fall through to the next option
If it does exist but is not a valid R interpreter (use --version output to validate), then return an error
Use the first R executable found on PATH; it must exist and be validated.
If not valid or doesn't exist, return an error
Once the interpreter is identified, it should be used for creating/retrieving the lock file.
The text was updated successfully, but these errors were encountered:
The code needs to identify the same version of R that the users have configured. This is passed in from the extension, but the backend code does not use this value consistently. To solve this, we need to make sure the correct path is identified, following our rules:
--version
output to validate), then return an errorOnce the interpreter is identified, it should be used for creating/retrieving the lock file.
The text was updated successfully, but these errors were encountered: