xml - Installing "SSOAP package" on Rstudio (Mac OS) - getting error -
i want connect r script soap web server in order extract data. im r newbie decent programmer.
- i have installed rstudio
- i installed rcurl , xml2 packages.
now im trying install the
ssoap package. downloaded .tar.gz file here: http://www.omegahat.org/ssoap/
next on rstudio , used "install" button under "packages", see here:
i error after:
> library("rcurl", lib.loc="/library/frameworks/r.framework/versions/3.2/resources/library") loading required package: bitops > library("xml2", lib.loc="/library/frameworks/r.framework/versions/3.2/resources/library") > install.packages("~/desktop/r/downloads/ssoap_0.9-0.tar.gz", repos = null, type = "source") error: dependencies ‘xml’, ‘xmlschema’ not available package ‘ssoap’ * removing ‘/library/frameworks/r.framework/versions/3.2/resources/library/ssoap’ warning in install.packages : installation of package ‘/users/xx/desktop/r/downloads/ssoap_0.9-0.tar.gz’ had non-zero exit status
any suggestions?
it looks 2 dependencies missing. install.packages('xml')
should fix first 1 (since cran still hosts xml package). xmlschema appears have been de-listed cran. should able download , install .tar.gz trying ssoap: http://www.omegahat.org/xmlschema/.
Comments
Post a Comment