91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Rstudio中安裝package時出現錯誤如何解決

發布時間:2021-04-02 14:22:07 來源:億速云 閱讀:1732 作者:Leah 欄目:開發技術

在Rstudio中安裝package時出現錯誤如何解決?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

一、 install.packages('REmap')無法安裝package:錯誤:“無法與服務器建立連接”

解決方式:切換下載的鏡像

方法一:在Rstudio菜單欄:tools-global options-packages中切換下載的鏡像

在Rstudio中安裝package時出現錯誤如何解決

方法二:修改文件,在安裝文件夾中找到Rprofile.site文件,我的路徑是D:\Program Files\R\R-3.4.1\etc,用記事本打開,在里面添加語句:

# set a CRAN mirror
local({r <- getOption(“repos”)
r[“CRAN”] <- “http://mirrors.tuna.tsinghua.edu.cn/CRAN/”
options(repos=r)}

二、手動安裝package

在網站:https://mirrors.tuna.tsinghua.edu.cn/CRAN/下載好需要的package

1.在R studio下,選擇packages

在Rstudio中安裝package時出現錯誤如何解決

2.選擇Install

3.Install from欄選擇Package Archive File(.zip;.tar.gz)

在Rstudio中安裝package時出現錯誤如何解決

4.Package archive欄點擊Browser,選擇剛才下載的文件

5.點擊Install,進行安裝

致此,手動安裝R包完成。安裝提示如下

推薦第一種安裝方式:因為第一種安裝方式會自動安裝依賴的包,而第二種方式,除了下載你想安裝的包還要下載所有依賴的包,這就有一定的難度了。

補充:Rstudio安裝packages時報錯,原因可能是這樣

最近接觸R語言,安裝好Rstudio后,需要安裝R的第三方包mirt。

執行步驟如下:

在Rstudio中安裝package時出現錯誤如何解決

在Rstudio中安裝package時出現錯誤如何解決

正當滿心歡喜地期待包的安裝時,結果出現了下面的情況:

install.packages("mirt")
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/likailei/Documents/R/win-library/3.6'
(as ‘lib' is unspecified)
Warning in install.packages :
 unable to access index for repository https://cran.rstudio.com/src/contrib:
 cannot open URL 'https://cran.rstudio.com/src/contrib/PACKAGES'
Warning in install.packages :
 package ‘mirt' is not available (for R version 3.6.0)
Warning in install.packages :
 unable to access index for repository https://cran.rstudio.com/bin/windows/contrib/3.6:
 cannot open URL 'https://cran.rstudio.com/bin/windows/contrib/3.6/PACKAGES'

什么鬼?!

此處省略5000字的辛苦排錯的歷程描述,直接貼上解決方案:

Rstudio默認使用的國外鏡像源,國內無法正常訪問。

Rstudio設置如下

Tools>global options>packages

在Rstudio中安裝package時出現錯誤如何解決

更改鏡像源后,重新執行安裝操作。

install.packages("mirt")
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/likailei/Documents/R/win-library/3.6'
(as ‘lib' is unspecified)
also installing the dependencies ‘permute', ‘GPArotation', ‘Rcpp', ‘vegan', ‘Deriv', ‘dcurver', ‘RcppArmadillo'

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/permute_0.9-5.zip'
Content type 'application/zip' length 505181 bytes (493 KB)
downloaded 493 KB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/GPArotation_2014.11-1.zip'
Content type 'application/zip' length 162104 bytes (158 KB)
downloaded 158 KB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/Rcpp_1.0.1.zip'
Content type 'application/zip' length 4494896 bytes (4.3 MB)
downloaded 4.3 MB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/vegan_2.5-5.zip'
Content type 'application/zip' length 3861520 bytes (3.7 MB)
downloaded 3.7 MB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/Deriv_3.8.5.zip'
Content type 'application/zip' length 133828 bytes (130 KB)
downloaded 130 KB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/dcurver_0.9.1.zip'
Content type 'application/zip' length 639915 bytes (624 KB)
downloaded 624 KB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/RcppArmadillo_0.9.400.3.0.zip'
Content type 'application/zip' length 2276463 bytes (2.2 MB)
downloaded 2.2 MB

trying URL 'https://mirrors.#edu.cn/CRAN/bin/windows/contrib/3.6/mirt_1.30.zip'
Content type 'application/zip' length 2572772 bytes (2.5 MB)
downloaded 2.5 MB

package ‘permute' successfully unpacked and MD5 sums checked
package ‘GPArotation' successfully unpacked and MD5 sums checked
package ‘Rcpp' successfully unpacked and MD5 sums checked
package ‘vegan' successfully unpacked and MD5 sums checked
package ‘Deriv' successfully unpacked and MD5 sums checked
package ‘dcurver' successfully unpacked and MD5 sums checked
package ‘RcppArmadillo' successfully unpacked and MD5 sums checked
package ‘mirt' successfully unpacked and MD5 sums checked

看完上述內容,你們掌握在Rstudio中安裝package時出現錯誤如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和田县| 页游| 咸宁市| 宕昌县| 镇康县| 内黄县| 抚顺市| 文成县| 台东市| 蚌埠市| 梁河县| 东宁县| 黔西县| 汝南县| 大荔县| 宣化县| 庐江县| 富民县| 疏附县| 彰化市| 海城市| 罗城| 寿光市| 密山市| 民丰县| 永寿县| 南木林县| 龙井市| 富裕县| 建瓯市| 武汉市| 汶上县| 宜兴市| 清水河县| 甘谷县| 桂平市| 辽宁省| 白玉县| 乌恰县| 临沂市| 宁远县|