R 버전 업그레이드하기
- 프로그램언어/R
- 2020. 5. 14.
R의 버전을 업데이트하기 위해서 사이트에서 R을 다운로드하여 인스톨을 하는 등의 작업을 할 필요 없이 R 명령어를 몇개 입력하여 최신 버전으로 Install 할 수 있다.
Step 1. install.packages("installr")
> install.packages("installr")
WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:
https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/user/Documents/R/win-library/3.6’
(as ‘lib’ is unspecified)
also installing the dependencies ‘stringi’, ‘stringr’
URL 'https://cran.rstudio.com/bin/windows/contrib/3.6/stringi_1.4.6.zip'을 시도합니다
Content type 'application/zip' length 15310634 bytes (14.6 MB)
downloaded 14.6 MB
URL 'https://cran.rstudio.com/bin/windows/contrib/3.6/stringr_1.4.0.zip'을 시도합니다
Content type 'application/zip' length 216792 bytes (211 KB)
downloaded 211 KB
URL 'https://cran.rstudio.com/bin/windows/contrib/3.6/installr_0.22.0.zip'을 시도합니다
Content type 'application/zip' length 342230 bytes (334 KB)
downloaded 334 KB
package ‘stringi’ successfully unpacked and MD5 sums checked
package ‘stringr’ successfully unpacked and MD5 sums checked
package ‘installr’ successfully unpacked and MD5 sums checked
The downloaded binary packages are in
C:\Users\user\AppData\Local\Temp\RtmpiuO6Xi\downloaded_packages
"installr" 패키지를 설치한다
Step 2. library(installr)
> library(installr)
필요한 패키지를 로딩중입니다: stringr
Welcome to installr version 0.22.0
More information is available on the installr project website:
https://github.com/talgalili/installr/
Contact: <tal.galili@gmail.com>
Suggestions and bug-reports can be submitted at: https://github.com/talgalili/installr/issues
To suppress this message use:
suppressPackageStartupMessages(library(installr))
Warning messages:
1: 패키지 ‘installr’는 R 버전 3.5.3에서 작성되었습니다
2: 패키지 ‘stringr’는 R 버전 3.5.3에서 작성되었습니다
install 패키지를 설치했으면, 이제 install 라이브러리를 사용한다
Step 3. check.for.updates.R()
> check.for.updates.R()
[1] TRUE
check.for.updates.R() 명령어를 사용하여 내가 사용하는 버전과 최신 버전을 알 수 있다.
Step 4. install.R()
> install.R()
URL 'https://cran.rstudio.com/bin/windows/base/R-4.0.0-win.exe'을 시도합니다
Content type 'application/x-msdownload' length 87563616 bytes (83.5 MB)
downloaded 83.5 MB
The file was downloaded successfully into:
C:\Users\user\AppData\Local\Temp\RtmpiuO6Xi/R-4.0.0-win.exe
Running the installer now...
Installation status: TRUE . Removing the file:
C:\Users\user\AppData\Local\Temp\RtmpiuO6Xi/R-4.0.0-win.exe
(In the future, you may keep the file by setting keep_install_file=TRUE)
[1] TRUE
install.R() 명령어로 신규 패키지를 다운로드하고 설치를 진행한다
Step 5. version
> version
_
platform x86_64-w64-mingw32
arch x86_64
os mingw32
system x86_64, mingw32
status
major 4
minor 0.0
year 2020
month 04
day 24
svn rev 78286
language R
version.string R version 4.0.0 (2020-04-24)
nickname Arbor Day
버전이 변경되었는지 RStudio등에서 확인하려면, 현재 프로그램을 종료하고, 다시 실행 후 version 명령어를 입력하여 현재의 버전을 확인 할 수 있다. 위 내용처럼 현재의 R버전이 4.0.0 (2020-04-24)의 최신 버전인 것을 확인할 수 있다.
#R #인스톨 #업그레이드 #업데이트
'프로그램언어 > R' 카테고리의 다른 글
R 할줄 R지? #11 - R 기초 통계 함수들 (0) | 2020.05.22 |
---|---|
R 할줄 R지? #10 - 데이터 정렬하기 (0) | 2020.05.22 |
R 할줄 R지? #9 - 파일 읽기 및 저장 (0) | 2020.04.29 |
R 할줄 R지? #8 - IRIS로 데이터 프레임 다뤄보기 (0) | 2020.03.04 |
R 할줄 R지? #7 - 2차원 다루기, 데이터프레임(Data Frame) (0) | 2020.02.18 |