R 3.0.0 update has left loads of 2.x packages incompatible

后端 未结 2 971
夕颜
夕颜 2021-02-02 00:54

On Ubuntu 10.04 I updated a load of the R (ubuntu) packages this morning. Then the first R script I tried told me zoo wasn\'t built for R 3.0.0. So I do sudo R and

2条回答
  •  伪装坚强ぢ
    2021-02-02 01:41

    Dirk's answer got me most of the way, leaving just xtsExtra, which was installed from R-Forge. I recommend against update.packages(ask=FALSE, checkBuilt=TRUE, repos="http://R-Forge.R-project.org") as that appears to update some of the CRAN packages with their R-Forge version; that might mean it installs more experimental versions (?).

    So, I did this instead:

    remove.packages('xtsExtra')
    install.packages("xtsExtra", repos="http://R-Forge.R-project.org")
    

提交回复
热议问题