<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: R packages not getting installed on cluster when creating cluster from dockerfile in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8361#M4023</link>
    <description>&lt;P&gt;What there has been no answer here! &amp;nbsp;@Debayan Mukherjee​&amp;nbsp;@Vartika Nain​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am running into this same problem as the idea of having to wait 45 minutes for libraries to install is absolutely wild as well as I have done everything outside of working with the docker container. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FROM databricksruntime/standard:9.x
&amp;nbsp;
# based on these instructions (avoiding firewall issue for some users):
# &lt;A href="https://cran.rstudio.com/bin/linux/ubuntu/#secure-apt" target="test_blank"&gt;https://cran.rstudio.com/bin/linux/ubuntu/#secure-apt&lt;/A&gt;
RUN apt-get update \
&amp;amp;&amp;amp; DEBIAN_FRONTEND="noninteractive" apt-get install --yes software-properties-common apt-transport-https \
&amp;amp;&amp;amp; gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 \
&amp;amp;&amp;amp; gpg -a --export E298A3A825C0D65DFD57CBB651716619E084DAB9 | sudo apt-key add - \
&amp;amp;&amp;amp; add-apt-repository 'deb &lt;A href="https://cloud.r-project.org/bin/linux/ubuntu" target="test_blank"&gt;https://cloud.r-project.org/bin/linux/ubuntu&lt;/A&gt; bionic-cran40/' \
&amp;amp;&amp;amp; apt-get update \
&amp;amp;&amp;amp; DEBIAN_FRONTEND="noninteractive" apt-get install --yes \
libssl-dev \
r-base \
r-base-dev \
&amp;amp;&amp;amp; add-apt-repository -r 'deb &lt;A href="https://cloud.r-project.org/bin/linux/ubuntu" target="test_blank"&gt;https://cloud.r-project.org/bin/linux/ubuntu&lt;/A&gt; bionic-cran40/' \
&amp;amp;&amp;amp; apt-key del E298A3A825C0D65DFD57CBB651716619E084DAB9 \
&amp;amp;&amp;amp; apt-get clean \
&amp;amp;&amp;amp; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&amp;nbsp;
# UPDATE A SERIES OF PACKAGES
# RUN apt-get update --fix-missing &amp;amp;&amp;amp; apt-get install -y ca-certificates libglib2.0-0 libxext6 libsm6 libxrender1 libxml2-dev
&amp;nbsp;
# hwriterPlus is used by Databricks to display output in notebook cells
# Rserve allows Spark to communicate with a local R process to run R code
# shiny is used by Databricks interpreter
RUN R -e "install.packages(c('hwriter', 'TeachingDemos', 'htmltools'))"
RUN R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/hwriterPlus/hwriterPlus_1.0-3.tar.gz', repos=NULL, type='source')"
RUN R -e "install.packages('Rserve', repos='http://rforge.net/', type='source')"
RUN R -e "install.packages('shiny', repos='https://cran.rstudio.com/')"
# Added packages for the project that I am currently working on
RUN R -e "install.packages(c('sparklyr', 'remotes', 'plyr', 'dplyr', 'rlist', 'stringr', 'rlist', 'ggplot2', 'patchwork', 'scales', 'Robyn', 'reticulate'))"
# Install nevergrad Python package
RUN python3 -m pip install nevergrad
RUN R -e "library(reticulate); reticulate::py_config()"
RUN R -e "install.packages('devtools', repos='https://cran.rstudio.com/')"
RUN R -e "remotes::install_github('mlflow/mlflow', subdir = 'mlflow/R/mlflow')"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I went with using the runtime because there is a use case for MLflow I get hit by the stan issues as well as the mlflow issues being installed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is very clear that R isn't supported much in DB as there was a resolved issue that never was merged into the main and the last time it was updated was 10 months ago. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Navneet Sonak​&amp;nbsp;let me know if you end up solving this with the docker image I would be super grateful&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jun 2023 17:32:40 GMT</pubDate>
    <dc:creator>workingtogetdbw</dc:creator>
    <dc:date>2023-06-01T17:32:40Z</dc:date>
    <item>
      <title>R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8353#M4015</link>
      <description>&lt;P&gt;I'm trying to use dockerfile to create a cluster which has Robyn (https://facebookexperimental.github.io/Robyn/) and other R libraries installed. But it is failing to install the R libraries to the cluster. When I run the container in interactive mode, I can see R libraries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I use dockerfile to create cluster with these R libraries installed on the cluster?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attachments:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;screenshot of dockerfile&lt;/LI&gt;&lt;LI&gt;driver log error&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Fri, 03 Mar 2023 04:00:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8353#M4015</guid>
      <dc:creator>nav</dc:creator>
      <dc:date>2023-03-03T04:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8355#M4017</link>
      <description>&lt;P&gt;@Debayan Mukherjee​&amp;nbsp;Thank you for your reply. Package name and the address is valid. I can see the package version when I run container in interactive mode. But none the R packages are getting installed on cluster when I use docker image to create the cluster. Am I missing some code in dockerfile?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 13:08:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8355#M4017</guid>
      <dc:creator>nav</dc:creator>
      <dc:date>2023-03-06T13:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8356#M4018</link>
      <description>&lt;P&gt;@Debayan Mukherjee​&amp;nbsp;Hi, wanted to follow up on this. Please let me know if you need any more information from my side.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 16:37:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8356#M4018</guid>
      <dc:creator>nav</dc:creator>
      <dc:date>2023-03-08T16:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8358#M4020</link>
      <description>&lt;P&gt;Hi @Debayan Mukherjee​&amp;nbsp;docker image is created using an argo workflow. I used this dockerfile as reference: &lt;A href="https://github.com/databricks/containers/blob/master/ubuntu/R/Dockerfile" target="test_blank"&gt;https://github.com/databricks/containers/blob/master/ubuntu/R/Dockerfile&lt;/A&gt;. I'm not sure I follow you 2nd question. Cluster is getting created fine, it is that they are missing all the R packages which should get installed on them bc of dockerfile. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's my dockerfile code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM databricksruntime/standard:10.4-LTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Suppress interactive configuration prompts&lt;/P&gt;&lt;P&gt;ENV DEBIAN_FRONTEND=noninteractive&lt;/P&gt;&lt;P&gt;ENV DOWNLOAD_STATIC_LIBV8=1&lt;/P&gt;&lt;P&gt;ENV TZ=America/New_York&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# install dependencies&lt;/P&gt;&lt;P&gt;RUN apt-get update \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;amp;&amp;amp; apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;amp;&amp;amp; add-apt-repository -y 'deb &lt;A href="https://cloud.r-project.org/bin/linux/ubuntu" target="test_blank"&gt;https://cloud.r-project.org/bin/linux/ubuntu&lt;/A&gt; focal-cran40/' \&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;amp;&amp;amp; apt-get install build-essential --yes \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;dirmngr gnupg apt-transport-https ca-certificates software-properties-common \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;autoconf \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;automake \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;g++ \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;gcc \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;cmake \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;gfortran \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;make \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;nano \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;liblapack-dev \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;liblapack3 \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libopenblas-base \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libopenblas-dev \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libcurl4-openssl-dev\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libxml2-dev\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libssl-dev\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;libnlopt-dev \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;r-base \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;r-base-dev \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;amp;&amp;amp; apt-get clean all \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;amp;&amp;amp; rm -rf /var/lib/apt/lists/*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages(c('remotes', 'shiny'), repos='https://cran.microsoft.com/')"&amp;nbsp;&lt;/P&gt;&lt;P&gt;#RUN R -e "remotes::install_github('facebookexperimental/Robyn/R');"&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages('Robyn')"&lt;/P&gt;&lt;P&gt;RUN R -e "library(Robyn)"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# # DBI/ODBC dependencies&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages(c('DBI', 'dplyr','dbplyr','odbc'), repos='https://cran.microsoft.com/')"&lt;/P&gt;&lt;P&gt;# # Databricks dependencies&lt;/P&gt;&lt;P&gt;# # hwriterPlus is used by Databricks to display output in notebook cells&lt;/P&gt;&lt;P&gt;# # Rserve allows Spark to communicate with a local R process to run R code&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages(c('hwriterPlus'), repos='https://mran.revolutionanalytics.com/snapshot/2017-02-26')"&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages(c('htmltools'), repos='https://cran.microsoft.com/')"&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages('Rserve', repos='http://rforge.net/')"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN R -e "install.packages('reticulate');"&lt;/P&gt;&lt;P&gt;RUN R -e "library(reticulate)"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# ## Install Nevergrad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# # RUN R -e "reticulate::use_python('/opt/conda/bin/python3')"&lt;/P&gt;&lt;P&gt;# # RUN R -e "reticulate::py_config()"&lt;/P&gt;&lt;P&gt;# # RUN R -e "reticulate::py_install('nevergrad', pip = TRUE)"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN /databricks/python3/bin/pip install nevergrad&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 14:18:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8358#M4020</guid>
      <dc:creator>nav</dc:creator>
      <dc:date>2023-03-09T14:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8360#M4022</link>
      <description>&lt;P&gt;Hi @Navneet Sonak​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are doing well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting your question in our community! We are happy to assist you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To help us provide you with the most accurate information, could you please take a moment to review the responses and select the one that best answers your question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also help other community members who may have similar questions in the future. Thank you for your participation and let us know if you need any further assistance!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 07:33:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8360#M4022</guid>
      <dc:creator>Vartika</dc:creator>
      <dc:date>2023-03-31T07:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8361#M4023</link>
      <description>&lt;P&gt;What there has been no answer here! &amp;nbsp;@Debayan Mukherjee​&amp;nbsp;@Vartika Nain​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am running into this same problem as the idea of having to wait 45 minutes for libraries to install is absolutely wild as well as I have done everything outside of working with the docker container. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FROM databricksruntime/standard:9.x
&amp;nbsp;
# based on these instructions (avoiding firewall issue for some users):
# &lt;A href="https://cran.rstudio.com/bin/linux/ubuntu/#secure-apt" target="test_blank"&gt;https://cran.rstudio.com/bin/linux/ubuntu/#secure-apt&lt;/A&gt;
RUN apt-get update \
&amp;amp;&amp;amp; DEBIAN_FRONTEND="noninteractive" apt-get install --yes software-properties-common apt-transport-https \
&amp;amp;&amp;amp; gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 \
&amp;amp;&amp;amp; gpg -a --export E298A3A825C0D65DFD57CBB651716619E084DAB9 | sudo apt-key add - \
&amp;amp;&amp;amp; add-apt-repository 'deb &lt;A href="https://cloud.r-project.org/bin/linux/ubuntu" target="test_blank"&gt;https://cloud.r-project.org/bin/linux/ubuntu&lt;/A&gt; bionic-cran40/' \
&amp;amp;&amp;amp; apt-get update \
&amp;amp;&amp;amp; DEBIAN_FRONTEND="noninteractive" apt-get install --yes \
libssl-dev \
r-base \
r-base-dev \
&amp;amp;&amp;amp; add-apt-repository -r 'deb &lt;A href="https://cloud.r-project.org/bin/linux/ubuntu" target="test_blank"&gt;https://cloud.r-project.org/bin/linux/ubuntu&lt;/A&gt; bionic-cran40/' \
&amp;amp;&amp;amp; apt-key del E298A3A825C0D65DFD57CBB651716619E084DAB9 \
&amp;amp;&amp;amp; apt-get clean \
&amp;amp;&amp;amp; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&amp;nbsp;
# UPDATE A SERIES OF PACKAGES
# RUN apt-get update --fix-missing &amp;amp;&amp;amp; apt-get install -y ca-certificates libglib2.0-0 libxext6 libsm6 libxrender1 libxml2-dev
&amp;nbsp;
# hwriterPlus is used by Databricks to display output in notebook cells
# Rserve allows Spark to communicate with a local R process to run R code
# shiny is used by Databricks interpreter
RUN R -e "install.packages(c('hwriter', 'TeachingDemos', 'htmltools'))"
RUN R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/hwriterPlus/hwriterPlus_1.0-3.tar.gz', repos=NULL, type='source')"
RUN R -e "install.packages('Rserve', repos='http://rforge.net/', type='source')"
RUN R -e "install.packages('shiny', repos='https://cran.rstudio.com/')"
# Added packages for the project that I am currently working on
RUN R -e "install.packages(c('sparklyr', 'remotes', 'plyr', 'dplyr', 'rlist', 'stringr', 'rlist', 'ggplot2', 'patchwork', 'scales', 'Robyn', 'reticulate'))"
# Install nevergrad Python package
RUN python3 -m pip install nevergrad
RUN R -e "library(reticulate); reticulate::py_config()"
RUN R -e "install.packages('devtools', repos='https://cran.rstudio.com/')"
RUN R -e "remotes::install_github('mlflow/mlflow', subdir = 'mlflow/R/mlflow')"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I went with using the runtime because there is a use case for MLflow I get hit by the stan issues as well as the mlflow issues being installed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is very clear that R isn't supported much in DB as there was a resolved issue that never was merged into the main and the last time it was updated was 10 months ago. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Navneet Sonak​&amp;nbsp;let me know if you end up solving this with the docker image I would be super grateful&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 17:32:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8361#M4023</guid>
      <dc:creator>workingtogetdbw</dc:creator>
      <dc:date>2023-06-01T17:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8354#M4016</link>
      <description>&lt;P&gt;Hi, The error looks like it is not able to locate one package, could you please reverify if the package name and the address to the package is valid?&lt;/P&gt;&lt;P&gt;Also please tag @Debayan Mukherjee​&amp;nbsp;with your next response which will notify me, Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 06:24:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8354#M4016</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-03-06T06:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8357#M4019</link>
      <description>&lt;P&gt;Hi @Navneet Sonak​&amp;nbsp;Sorry for the dela!, we would also like know how the docker image was created? There can be a possibility something is missing the docker image code. Also, is it working with the default DBR cluster? &lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 06:06:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8357#M4019</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-03-09T06:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: R packages not getting installed on cluster when creating cluster from dockerfile</title>
      <link>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8359#M4021</link>
      <description>&lt;P&gt;We need to check the docker file code and proceed, it would be helpful if you create a support case for the same which will ensure to get tagged with the right team. &lt;/P&gt;&lt;P&gt;Also, is there any dependency package failures? &lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 06:03:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/r-packages-not-getting-installed-on-cluster-when-creating/m-p/8359#M4021</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-03-13T06:03:18Z</dc:date>
    </item>
  </channel>
</rss>

