I am trying to install the caret package in Azure Jupyter notebook, but I am getting the below warnings and exiting with non-zero exit status.
I tried installing the packages in several ways as listed in other answers and in forums such as:
#1
install.packages('caret', dependencies=TRUE)
Errors:
Installing package into ‘/home/nbuser/R’
(as ‘lib’ is unspecified)
also installing the dependency ‘recipes’
Warning message in install.packages("caret", dependencies = TRUE):
“installation of package ‘recipes’ had non-zero exit status”Warning message in install.packages("caret", dependencies = TRUE):
“installation of package ‘caret’ had non-zero exit status”
#2
install.packages(c('ddalpha', 'recipes'))
install.packages('caret', dependencies=True)
Errors:
Installing packages into ‘/home/nbuser/R’
(as ‘lib’ is unspecified)
Warning message in install.packages(c("ddalpha", "recipes")):
“installation of package ‘ddalpha’ had non-zero exit status”Warning message in install.packages(c("ddalpha", "recipes")):
“installation of package ‘recipes’ had non-zero exit status”Installing package into ‘/home/nbuser/R’
(as ‘lib’ is unspecified)
also installing the dependency ‘recipes’
Warning message in install.packages("caret"):
“installation of package ‘recipes’ had non-zero exit status”Warning message in install.packages("caret"):
“installation of package ‘caret’ had non-zero exit status”
I expect the caret library installed without any errors in Azure Jupyter notebooks.