Using R version 3.4.1. Tryingg to install httr
package like below
install.packages('httr', keep_outputs = TRUE, repos='https://ftp.fau.de/cran/')
But there is no output, only one warning
Installing package into ‘/usr/lib/spark/R/lib’
(as ‘lib’ is unspecified)
Manually
Downloaded version to local and tried installing manually like below
install.packages(pkgs = "/tmp/httr_1.4.6.tar.gz", repos = NULL, type = "source")
Getting error
(as ‘lib’ is unspecified)
ERROR: this R is version 3.4.1, package 'httr' requires R >= 3.5
* removing ‘/usr/lib/spark/R/lib/httr’
Questions
- Why R is not installing older version of
httr
package which is supported? - Why R is not giving any error while installing
httr
in first way? - I saw there is archive folder https://ftp.fau.de/cran/src/contrib/00Archive/. but why R is not installing from there?