How to install latest R in ubuntu?
ubuntu 환경에서 R 최신 버전 설치
1. Open the terminal
2. Type the below command
1 | sudo vi /etc/apt/sources.list | cs |
3. Add an entry like
1 2 3 4 5 6 7 8 9 10 11 | # Ubuntu 15.04 deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu vivid/ # Ubuntu 14.10 deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu utopic/ # Ubuntu 14.04 deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu trusty/ # Ubuntu 12.04 deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu precise/ | cs |
For example
My environment is ubuntu 14.04, so add entry like this
1 | deb http://healthstat.snu.ac.kr/CRAN/bin/linux/ubuntu trusty/ | cs |
You can find favorite CRAN mirror this page
4. Type the below command
1 | sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 | cs |
5. Type the under command
6. Enjoy
반응형
댓글
이 글 공유하기
다른 글
-
Find Maximum Bipartite Subgraph(Biclique) C++
Find Maximum Bipartite Subgraph(Biclique) C++
2015.06.08http://genome.cs.iastate.edu/supertree/download/biclique/README.html직접 구현하고 있었는데 버그가 많았고처음에 Maximum Bipartite Subgraph로 검색하니 정보가 거의 없었는데Biclique로 검색해서 찾은 라이브러리테스트 사례들 돌려보니 잘 되는 것 같다. -
ubuntu skype dpkg 의존성 에러 해결
ubuntu skype dpkg 의존성 에러 해결
2015.05.12사용하는 ubuntu 버전은 14.04 LTS이 고 http://skype.daesung.com/download/downloadDetail_pcLinux.asp 스카이프에서 리눅스 용을 제공해서 설치하는데(스카이프에서 제공하는 버전은 12.04이지만 14.04에서도 잘 설치됩니다)의존성 문제가 발생했다.1sudo apt-get -f installcs 커맨드 로 해결할 수 있다. -
C++/Java String Reverse (문자열 뒤집기)
C++/Java String Reverse (문자열 뒤집기)
2015.03.25 -
자료구조 How to Naming?
자료구조 How to Naming?
2015.03.23
댓글을 사용할 수 없습니다.