devtools::install_github("Moonerss/CIBERSORT") Skipping install of 'CIBERSORT' from a github remote, the SHA1 (cf2b173f) has not changed since last install. Use `force = TRUE` to force installation
时间: 2024-02-02 22:04:26 浏览: 215
msuRACiFit:用简单的R脚本拟合ACi曲线
5星 · 资源好评率100%
这是因为你在之前已经安装了 `CIBERSORT` 包,而且该包的代码没有更新,所以它不需要重新安装。如果你想更新已安装的包,请使用 `force = TRUE` 参数来强制重新安装。例如:
```
devtools::install_github("Moonerss/CIBERSORT", force = TRUE)
```
这将会强制重新安装 `CIBERSORT` 包,并覆盖旧版本。
阅读全文