Git 来自 RStudio 的提交错误:"The system cannot find the path specified"
Git commit error from RStudio: "The system cannot find the path specified"
我在 RStudio 中有一个项目,我从 RStudio 中将其推送到 github。当我尝试提交时,突然出现错误 "The system cannot find the path specified"。工作目录是正确的,我没有移动任何文件夹——我不知道发生了什么变化。
当我尝试绘制 (Error in (function () : Shadow graphics device error: r error 4 (R code execution error) 我想知道这些错误是否相关。
我需要重新安装一些东西吗?
我 运行 遇到了同样的问题,设置一个新的临时目录似乎对我有用。
尝试 dir.create(tempdir())
这可能与以下 or (?) wrt long-运行 R 会话有关,或者您的系统上发生了一些后台刷新。
我在 RStudio 中有一个项目,我从 RStudio 中将其推送到 github。当我尝试提交时,突然出现错误 "The system cannot find the path specified"。工作目录是正确的,我没有移动任何文件夹——我不知道发生了什么变化。
当我尝试绘制 (Error in (function () : Shadow graphics device error: r error 4 (R code execution error) 我想知道这些错误是否相关。
我需要重新安装一些东西吗?
我 运行 遇到了同样的问题,设置一个新的临时目录似乎对我有用。
尝试 dir.create(tempdir())
这可能与以下