I have the recent R Studio version and I am trying to install a package for microbiome data analysis.
The package does not have a new version for the R Studio version I am using. I tried to install it from the source but I got a warning. These are the command that I used for the installation:
library(devtools)
install_github("umerijaz/microbiomeSeq")
library(microbiomeSeq)
The warning from IDE:
Skipping install of 'microbiomeSeq' from a github remote, the SHA1 (ffa00906) has not changed since last install.
Use force = TRUE
to force installation
I then use the suggested force=True' with this command:
library(remotes)
update_packages("microbiomeSeq", force = TRUE)
install_github("umerijaz/microbiomeSeq")
I got this warning again:
Warning message:
update_packages(force = TRUE)
is deprecated and has no effect.
install_github("umerijaz/microbiomeSeq")
Skipping install of 'microbiomeSeq' from a github remote, the SHA1 (ffa00906) has not changed since the last install.
Useforce = TRUE
to force installation
What can I do to install this package (microbiomeseq) as I am following a tutorial? If not, is there any other package I can use in place of the package;micrbiomeseq'. I also want to know if such a solution can be used for any other package that doesn't have a recent version for a particular R Studio version.
Thank you.