Skip to content

Commit 3e91889

Browse files
authored
Added install of e1071 R package
The e1071 R package is a dependency of functions within the caret package. Without it, `caret::train` (for example) cannot be run. This pull request addresses issue #889 (#889). note - I first tried installing e1071 in the RUN command started on line 27 but that resulted in e1071 not installing (don't know why) but adding an additional RUN command led to succesful installation... So I just went with it.
1 parent d4cbf2f commit 3e91889

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

r-notebook/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@ RUN conda install --quiet --yes \
4848
'r-hexbin=1.27*' && \
4949
conda clean --all -f -y && \
5050
fix-permissions $CONDA_DIR
51+
52+
# Install e1071 R package (dependency of the caret R package)
53+
RUN conda install --quiet --yes r-e1071

0 commit comments

Comments
 (0)