Я пытаюсь установить пакет caret в записную книжку Azure Jupyter, но я получаю следующие предупреждения и завершаю работу с ненулевым статусом выхода.
Я пытался установить пакеты несколькими способами, как указано в других ответах и на форумах, таких как:
#1
install.packages('caret', dependencies=TRUE)
Ошибка:
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)
Ошибка:
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”
Я ожидаю, что библиотека вставок будет установлена без ошибок в записных книжках Azure Jupyter.