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 =
repos =
You can use
devtools::install_local(path)
It can automatically download all the dependencies.