美文网首页
RStudio更新R版本后出现 Error Starting R

RStudio更新R版本后出现 Error Starting R

作者: 佳名 | 来源:发表于2022-07-01 16:26 被阅读0次

    原来的MicrobiotaProcess不能用了,于是一口气把R更新到4.2,当再次打开RStudio傻眼了

    image.png

    Download the RStudio IDE - RStudio
    但是发现 RStudio IDE虽然翻墙才可以下载,但是下载速度极慢。
    后来尝试wget命令行下载:

    wget -c https://download1.rstudio.org/desktop/windows/RStudio-2022.02.3-492.exe
    

    速度还可以。
    重新安装各种包

    if (!require("BiocManager", quietly = TRUE))
        install.packages("BiocManager")
    BiocManager::install("MicrobiotaProcess")
    BiocManager::install("phyloseq")
    install.packages("ggsci")
    install.packages("tidyverse")
    install.packages("ggpubr")
    

    相关文章

      网友评论

          本文标题:RStudio更新R版本后出现 Error Starting R

          本文链接:https://www.haomeiwen.com/subject/uzzfbrtx.html