Am trying to launch a shiny app using the below command.
Rscript -e "shiny::runApp('test-app', launch.browser=TRUE)"
However, I get an error as shown below
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
namespace 'htmltools' 0.4.0 is being loaded, but >= 0.4.0.9003 is required
Calls: :: ... getNamespace -> loadNamespace -> namespaceImport -> loadNamespace
Execution halted
I did check my library folder and see that htmltools
package is present.
I also tried the below dependencies=TRUE
install.packages(pkgs,lib = "C:/Users/User/Desktop/data/library",repo = "https://cloud.r-project.org",dependencies=TRUE)
Here pkgs is a list containing list of packages that has to be installed.
The problem is same script works in my system but it doesn't work in my colleague's system. How can I resolve this?
Can help me understand what's the issue?