我已经查看了很多关于ggplot2安装的主题,但是没有遇到我的问题。
我正在使用R studio版本0.97.332。我已经安装了sm和extremevalues而没有任何问题,但是我无法安装ggplot2。
我尝试了以下两种方式,但其中任何一种方式都无效。
install.packages("C:\\Temp\\ggplot2_0.9.3.1.zip", repos=NULL,
lib.loc="...\Documents\\R\\win-library\\2.15")
Installing package(s) into ‘...\Documents/R/win-
library/2.15’ (as ‘lib’ is unspecified)
inferring 'repos = NULL' from the file name
package ‘ggplot2’ successfully unpacked and MD5 sums checked
Warning in install.packages :
unable to move temporary installation
‘\\..\Documents\R\win-
library\2.15\file15c06ecb4488\ggplot2’ to
‘\\...\Documents\R\win-library\2.15\ggplot2’
我手动删除了ggplot2的任何损坏的(?)文件夹,但这也无效 也没有手动移动文件夹。
install.packages("ggplot2")
Installing package(s) into ‘\\.../Documents/R/win-
library/2.15’
(as ‘lib’ is unspecified)
trying URL 'http://cran.rstudio.com/bin/windows/contrib/2.15/ggplot2_0.9.3.1.zip'
Content type 'application/zip' length 2665534 bytes (2.5 Mb)
opened URL
downloaded 2.5 Mb
package ‘ggplot2’ successfully unpacked and MD5 sums checked
Warning in install.packages :
unable to move temporary installation
‘\\...\Documents\R\win-
library\2.15\file15c0758038ea\ggplot2’ to
‘\\...\Documents\R\win-library\2.15\ggplot2’
The downloaded binary packages are in
C:\Users\...\AppData\Local\Temp\RtmpmocnrL\downloaded_packages
我尝试过相同的方法来安装corrplot,但这也没有用。
任何帮助都会受到赞赏,我现在已经尝试过很多次了......
答案 0 :(得分:1)
我现在不使用Windows,但似乎可能是权限问题。您是否尝试以管理员身份启动R并运行install.packages(“ggplot2”)?
答案 1 :(得分:0)
这很可能是daj notes的权限问题。我发现可以通过手动创建目标文件夹来规避此问题。在这种情况下,请在:
中创建名为ggplot2
的文件夹
\\...\Documents\R\win-library\2.15\
然后再次尝试在R中安装包。