Some experience during install in Linux (Ubuntu)
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
Hi Zhe,
Many thanks for the valuable experience you shared here. Very detailed and should be a good reference for the beginners who have trouble in installing KAML.
With regards, Lilin
You are very welcome. Nice work.
发件人: [email protected] 代表 Lilin Yin [email protected] 答复: YinLiLin/KAML [email protected] 日期: 2020年6月22日 星期一 上午10:20 收件人: YinLiLin/KAML [email protected] 抄送: Zhe [email protected], Author [email protected] 主题: Re: [YinLiLin/KAML] Some experience during install in Linux (Ubuntu) (#4)
Hi Zhe,
Many thanks for the valuable experience you shared here. Very detailed and should be a good reference for the beginners who have trouble in installing KAML.
With regards, Lilin
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.