Error in utils::download SCPA
Closed this issue · 5 comments
deepdiver25 commented
jackbibby1 commented
Hi,
What output do you get when you run:
devtools::install_version("crossmatch", version = "1.3.1", repos = "http://cran.us.r-project.org")
devtools::install_version("multicross", version = "2.1.0", repos = "http://cran.us.r-project.org")
Jack
deepdiver25 commented
jackbibby1 commented
It looks like you need to install the other packages you're getting an error for. Can you try:
install.packages(c("Hmisc", "checkmate", "htmlTable", "nbpMatching"))
And then run
# install.packages("devtools")
devtools::install_version("crossmatch", version = "1.3.1", repos = "http://cran.us.r-project.org")
devtools::install_version("multicross", version = "2.1.0", repos = "http://cran.us.r-project.org")
devtools::install_github("jackbibby1/SCPA")
jackbibby1 commented
Ah, actually -- it also looks like you don't have the Xcode command line tools. You'll need these installed before you try to install the other packages. If you open Terminal and run:
xcode-select --install
Then this should install them
deepdiver25 commented
Thank you for your help, I needed to install xcode, the packages listed above and also complexheatmap, but I finally got there!