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

后端 未结 2 996
夕颜
夕颜 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条回答
  •  Happy的楠姐
    2021-02-02 01:38

    The required command is not what you state: update.packages(ask=F) but rather the following update.packages(ask=FALSE, checkBuilt=TRUE).

    Try that, and all the still-maintained and available CRAN packages will of course be taken care of. Things you installed from github, Simon's rforge, r-forge, or other random repo will need manual help.

    This issue has been discussed at length at various venues since R 3.0.0 came out.

提交回复
热议问题