r - Errors Installing previous version of ggvis -


upon updating ggvis 0.4.3, shiny application built no longer working. therefore trying revert ggvis previous version, however, when run following code:

foo <- "https://cran.r-project.org/src/contrib/archive/ggvis/ggvis_0.4.2.tar.gz" install.packages(foo, repos=null, type="source") 

based on post: installing older version of r package

this result in console. have replaced name of company , user in directories "company" , "user" respectively discretion.

installing package ‘\\company/user/r/win-library/3.3’ (as ‘lib’ unspecified) trying url 'https://cran.r-project.org/src/contrib/archive/ggvis/ggvis_0.4.2.tar.gz' content type 'application/x-gzip' length 728345 bytes (711 kb) downloaded 711 kb  '\\company\user' cmd.exe started above path current directory. unc paths not supported.  defaulting windows directory. * installing *source* package 'ggvis' ... ** package 'ggvis' unpacked , md5 sums checked ** r ** data *** moving datasets lazyload db ** demo ** inst ** preparing package lazy loading ** *** installing indices ** building package indices ** installing vignettes warning in file(con, "w") :   cannot open file '\\company/user/r/win-library/3.3/ggvis/doc/index.html': no such file or directory error in file(con, "w") : cannot open connection error: installing vignettes failed * removing '\\company/user/r/win-library/3.3/ggvis' * restoring previous '\\company/user/r/win-library/3.3/ggvis' warning in install.packages :   running command '"c:/progra~1/r/r-33~1.1/bin/x64/r" cmd install -l "\\company\user\r\win-library\3.3" "c:/users/user/appdata/local/temp/rtmpuoifa9/downloaded_packages/ggvis_0.4.2.tar.gz"' had status 1 warning in install.packages :   installation of package ‘c:/users/user/appdata/local/temp/rtmpuoifa9/downloaded_packages/ggvis_0.4.2.tar.gz’ had non-zero exit status 

the result either ggvis stays version 0.4.3.

i tried exact same code revert 0.4.2 on machine running same version of rstudio (3.3.1) on mac instead of windows machine , worked fine. @ loss why not able reinstall 0.4.2 of ggvis on machine. thanks


Comments