Pål Kristian Berntzen Bjartan

Results 11 comments of Pål Kristian Berntzen Bjartan

The issue lies with the fact that the eigenvalues of A is not equal to the values in the solution matrix. E.g. -128.49322764802145 is not equal to -128.493. The assertion...

> What happens if radian is not used? R installed with conda? I get the same error. No, I installed from the official CRAN repositories through `apt`.

Yes, `~/.vscode-R/init.R` references another file `/home/user/.vscode/extensions/reditorsupport.r-2.4.0/R/session/init.R`. Contents `~/.vscode-R/init.R`: ```R local(source("/home/user/.vscode/extensions/reditorsupport.r-2.4.0/R/session/init.R", chdir = TRUE, local = TRUE)) ``` Contents `~/.vscode/extensions/reditorsupport.r-2.4.0/R/session/init.R`: ```R # This file is executed with its containing directory as...

Thanks, for the tip! Adding the following code snippet ```R source(file.path(Sys.getenv( if (.Platform$OS.type == "windows") "USERPROFILE" else "HOME" ), ".vscode-R", "init.R")) ``` at the beginning of `"~/.Rprofile` the solved the...

Thanks! I've updated my user `.Rprofile` with your changes.

I'm been having this issue for some time. Have there been any new developments?

Sorry for the late reply. Yesterday I encountered the same issue when trying to start an R terminal in an existing workspace or by just opening the folder. However, it...

Today, I experienced the same issue mentioned in my [previous post](https://github.com/REditorSupport/vscode-R/issues/1094#issuecomment-1468345622) after running routine updates to my system, which included updating VS Code. Again, `.vsc.attach()` did not attach the current...

Can confirm. I get the same bug trying to run Python kernel by this command. I already had JupyterLab installed. Attempting to reinstall did not solve the issue.

Ok, so checking Jupyter's kernelspec list, I found a workaround: I noticed that I could run R kernels, so I suspected it might have something to do with the path...