반응형
R studio에서 package download하는 곳을 변경하는데 아래와 같이 에러가 발생한다면,
'the given url does not appear to be a valid cran repository'
해결할 수 있는 방법은 다음과 같습니다.
getOption("download.file.method")
getOption("download.file.extra")
위와같이 ternimal에 쳤을때, 둘 다 NULL이 나온 경우
options(
download.file.method = "curl",
download.file.extra = "-L -f" # follow redirects; fail on error
)
위와 같이 쳐주면 됩니다.
728x90
반응형
'실용적인프로그래밍 > R' 카테고리의 다른 글
[R] scRepertoire에서 오류 해결 방법 (0) | 2021.11.12 |
---|---|
[R] msa package 설치 에러 해결! (gcc) (0) | 2021.08.23 |
[R] pheatmap에 오류발생 (NA/NaN/Inf in foreign function call) (5) | 2021.04.19 |
[R] pheatmap으로 예쁜 heatmap 그리기 (6) | 2021.01.29 |
[R] ggplot barplot, histogram 그리기 (0) | 2021.01.14 |
댓글