rlandsat installation problems R studio 4.0.2/mac

I am trying to install the package rlandsat and keep getting:

install.packages("rlandsat")
Warning in install.packages :
package ‘rlandsat’ is not available (for R version 4.0.2)

I have tried using devtools install github but I get this error

devtools::install_github("atlanhq/rlandsat")
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘fs’

I am really stuck and do not know how I can install this package (and I can't complete anything without it! I am actually stuck at step one of my code!)

Any help would be hugely appreciated!

Thank you

Rebecca

rlandsat is no longer on CRAN so you have to install from GitHub

About this error message I think is self explanatory, you are missing the fs package so you have to install it.

install.packages("fs")

Hi, thanks for your reply.

I have tried that. When I use

install.packages("fs")

it says that it has worked but then when I retry downloading rlandsat from github I get the same

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘fs’

so I am not sure what I am doing wrong because I have already installed fs.

Can you show the complete message you get when you try to install fs?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.