Package dependencies when installing from source in R

前端 未结 4 1433
梦毁少年i
梦毁少年i 2020-12-03 03:13

Just confirming: If I distribute my R package as ZIP/TAR then installing the package will not automatically download/install dependencies because I have to set repos =

4条回答
  •  再見小時候
    2020-12-03 03:43

    You can use

      devtools::install_local(path)
    

    It can automatically download all the dependencies.

提交回复
热议问题