This is a test version of Biostars. For the public version, visit https://www.biostars.org.
install.packages("imudata") - package ‘imudata’ is not available for this version of R

I have some problems when I want to install some package for R. For example imudata package. I see following error:

 install.packages("imudata")
Installing package into ‘C:/Users/najafi/AppData/Local/R/win-library/4.2’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘imudata’ is not available for this version of R

A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

How can I solve this problem? Thanks a lot

r

You can install from github directly. Many R packages are not present in the CRAN repository or in Bioconductor( from Biocmanager). Also remember to carefully read the documentation of the various tools you wish to install, where you can find instructions. Try these commands:

# Install R devtools
  install.packages("devtools")
# Install the package from github  
  devtools::install_github("SMAC-Group/imudata")

I am facing the same problem and I don't know how to solve the problem,....

Read the answers in the post, understand them and try to implement them.

1 answer

Welcome to this community. Please learn the most important lesson right away which is reading answers and learning from it. Users gave you good advise for exactly the same question but different package here:

install package

Log in to answer this question.