Rocks Clusters 6 (CentOS 6) 에서 R 설치
* 소스로 설치하는 방법 (현재 CentOS 6를 위한 rpm을 제공하지 않고 있어서 소스로 설치함)
1. 다운로드
http://cran.nexr.com/src/base/R-2/R-2.15.2.tar.gz
2. 관련 모듈 설치
http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm
다운로드 받아서 설치 (이모듈을 설치하지 않으면 make 시 attach라는 function이 없다고 나옴)
Error: could not find function "attach"
$> rpm -i epel-release-6-7.noarch.rpm
* 기타 모듈 gcc, libgcc, cpp, libgfortran 등등 모듈 설치 확인
3. 설치
$> tar xvfz R-2.15.2.tar.gz
$> cd R-2.15.2
$> mkdir makeout
$> ./configure --prefix=/path/makeout --with-readline=no
$> make
$> make install
실행파일 /path/R-2.12.1/bin/R
<Rocks Clusters 5에서 R 2.15.2설치>
$> tar xvfz R-2.15.2.tar.gz
$> cd R-2.15.2
$> ./configure --prefix=/path/makeout --with-readline=no
$> make
$> make install
$> touch R_HOME/etc/Rprofile.site # touch /usr/lib64/R/etc/Rprofile.site
$> cd R_HOME/etc/
$> vi Rprofile.site
options(repos=c(CRAN="http://미러서버아이피/cran"))
$> R
R> install.packages("ENmisc")
'TA > Common' 카테고리의 다른 글
nmap (0) | 2013.02.04 |
---|---|
ping, tracert, traceroute (0) | 2013.02.04 |
grep 사용시 or 사용 방법 (0) | 2013.02.04 |
umount: device is busy (0) | 2013.02.04 |
glusterfs 3.3 설치 및 구성 (0) | 2013.02.04 |