re- installing R linux ubuntu: unmet dependencies R

后端 未结 5 2273
悲&欢浪女
悲&欢浪女 2020-12-16 21:30

I used aptitude install to install a package, Ubuntu 11.10 oneiric, that apparently I couldn\'t install because of dependencies. I removed a couple of more libraries while d

5条回答
  •  心在旅途
    2020-12-16 21:32

    1. Uninstall previous R installation:

      sudo R --no-save
      pkgList <- installed.packages(priority='NA')
      remove.packages(pkgList)
      q()
      sudo apt-get remove --purge r-cran* r-base*
      
    2. Follow instructions (for R part) from: How to install R, JGR and Deducer in Ubuntu

提交回复
热议问题