Help
DescriptionI want to use I reduced the code to the following The wanted behavior would be, that Thank you for your help. I hope I'm not missing something obvious. |
Replies: 1 comment 1 reply
|
The As explained in https://stackoverflow.com/questions/27583767/warning-downloaded-length-reported-length-in-installing-packages-from-cran, you might try something like |
The
timeoutargument oftar_resources_network()is about synchronizing files across network file systems on clusters. Unfortunately it does not help withtar_download(), andutils::download.file()does not seem to have a timeout argument.As explained in https://stackoverflow.com/questions/27583767/warning-downloaded-length-reported-length-in-installing-packages-from-cran, you might try something like
options(timeout = max(1000, getOption("timeout")))in the.Rprofilefile of your project.