我试图让 R 在我的 Windows 机器上与 Jupyter Notebook 一起工作。我跟着 IRkernel tutorial
但是,我无法安装 GitHub 存储库,总是出现错误
install_github("IRkernel/IRkernel") Downloading GitHub repo IRkernel/IRkernel@master Error: Git does not seem to be installed on your system.
安装了 devtools 包 (2.0.1)。 install_github 也适用于例如 install_github("StatsWithR/statsr") (Coursera 包)(尽管 devtools 包甚至没有加载?)。

不知道如何处理这个问题,有什么想法吗?我的 devtools 包坏了吗?

更新 :
刚刚重新安装了 R(删除了所有包):我仍然遇到同样的错误

最佳答案

以为我会在这里插话。我有同样的问题。我看到了这篇文章... https://github.com/IRkernel/IRkernel/issues/594 Flying Sheep 只是声明要安装 git。所以去https://git-scm.com/下载并安装,然后运行https://irkernel.github.io/installation/指令,一切正常。现在在 Jupyter Nb 中使用 R。

关于r - 无法使用 install_github() : Git not installed? 安装 IRkernel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53086530/

10-11 17:00