nickmckay / GeoChronR

Development repository for GeoChronR
http://nickmckay.github.io/GeoChronR/
MIT License
32 stars 3 forks source link

GeoChronR installation #87

Closed sudipacharya22 closed 2 weeks ago

sudipacharya22 commented 2 months ago

I tried to install geoChronR using <- remotes::install_github("nickmckay/geoChronR") outcome: Installing package into ‘.../Local/R/win-library/4.4’ (as ‘lib’ is unspecified) ERROR: dependencies 'pcaMethods', 'lipdR' are not available for package 'geoChronR'

after this when i use <- library(geoChronR)

Error in library(geoChronR) : there is no package called ‘geoChronR’

I don't know what the problem is, is there anyone who can help me.

nickmckay commented 1 month ago

It looks like lipdR and pcaMethods are not installing properly. They should install automatically, but you could try installing them separately.

remotes::install_github("nickmckay/lipdR")

and

if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("pcaMethods")