Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can't I install the XML package

Tags:

r

web

Am I making some basic error here?

install.packages("XML")
Warning in install.packages :
  package ‘XML’ is not available (for R version 2.13.0)
Installing package(s) into ‘C:/Program Files/R/R-2.13.0/library’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘XML’ is not available (for R version 2.13.0)

1 Answers

It is probably because www.omegahat.org doesn't exist anymore. So,

command install.packages("XML", repos = "http://www.omegahat.org/R") does not work. Instead use below:

install.packages("XML", repos = "http://www.omegahat.net/R")
like image 190
rlpatrao Avatar answered Nov 25 '25 20:11

rlpatrao



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!