-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
Firsly, if you run into some errors with types of non-zero exit status when you install devtools, it means some required packages are not installed in the system, which can be handled as follows:
sudo apt-get -y install libcurl4-gnutls-dev libxml2-dev libssl-dev
Secondly, if you run into github.api error, you can solve it by the following command:
devtools::install_github("YinLiLin/R-KAML", host = "https://api.github.com")
Thirdly, if you run into tar type of error, it may be because the defualt downloading tools was not libcurl but curl, which can be solved with the following command:
options("download.file.method" = "libcurl")
Best,
Zhe