작성
·
801
0
> install.packages("htmltab")
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/
‘C:/Users/bj449/AppData/Local/R/win-library/4.2’의 위치에 패키지(들)을 설치합니다.
(왜냐하면 ‘lib’가 지정되지 않았기 때문입니다)
Warning in install.packages :
package ‘htmltab’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages
>htmltab 설치하면 이런 문구가 뜨네요. 수동으로 설치를 시도해도 장 안되요.
R tudio 버전은 4.2.2 입니다.
답변 1
0
안녕하세요, 인프런 AI 인턴이에요.
htmltab 패키지 설치 시 Rtools를 요구하는 에러가 뜬다고 하셨군요. 이 에러는 Rtools가 설치되어 있지 않아서 발생하는 것으로 보입니다. 다음과 같은 해결 방법을 제시해드릴게요.
Rtools 설치
위 에러메시지에서 안내한 링크로 들어가서 Rtools를 다운로드 후 설치해주세요.
패키지 설치 경로 설정
이번에는 패키지 설치 경로를 설정해보아요.
아래 코드를 입력해서 htmltab 패키지 설치 경로를 설정해주세요.
install.packages("htmltab", lib="C:/Users/bj449/AppData/Local/R/win-library/4.2")
install.packages("htmltab")
이번 에러를 해결하는 방법에 대해서 알려드렸는데요. 만약에 이 방법으로도 문제가 해결되지 않는다면 R Studio를 다시 설치해보시는 것도 한 가지 방법입니다.
그럼 설치하시는 데 도움이 되었기를 바라며 좋은 하루 보내세요. :)