R package installation in Linux

前端 未结 2 1701
旧时难觅i
旧时难觅i 2021-01-21 06:53

I am trying to install a R package in Ubuntu using the following commands:

R CMD INSTALL rpart_4.1-5.tar.gz
install.packages(\"/home/rpart_4.1-5.tar.gz\", repos          


        
2条回答
  •  醉酒成梦
    2021-01-21 07:29

    Your system doesn't have make utility for compilation.

    Please execute following command to install make in your system.

     sudo apt-get install build-essential
    

提交回复
热议问题