Linux上安装R

1.修改源列表文件:sudo vi /etc/apt/sources.list


在该文件中添加:deb http://cran.stat.upd.edu.ph/bin/linux/ubuntu precise/


其中http://cran.stat.upd.edu.ph/为选择的镜像服务器(University of the Philippines and PREGINET)


2.升级软件列表:sudo apt-get update


3.安装R:sudo apt-get install r-base-core=3.0.2-1precise0


其中r-base-core的最新版本3.0.2-1precise0在http://cran.stat.upd.edu.ph/上查看.

安装R

   sudo apt-get update
   sudo apt-get install r-base
   sudo apt-get install r-base-core
  若需要从source中编译R包,或者 使用install.packages()安装 包,也需要安 r-base-dev package: sudo apt-get install r-base-dev

删除R
sudo apt-get remove r-base-core 
sudo apt-get remove r-base
sudo apt-get remove autoremove

你可能感兴趣的:(Linux基本操作)