- 3051 Views
- 7 replies
- 9 kudos
Today, many R packages are pre-installed on the standard clusters on Databricks. Libraries like "tidyverse", "ggplot2", etc are there. Also the great library "readxl" to load Excel files. But unfortunately, its counterpart "writexl" is not pre-instal...
- 3051 Views
- 7 replies
- 9 kudos
Latest Reply
I just need to figure who decides which R packages are pre-installed on the cluster.
6 More Replies
- 3286 Views
- 1 replies
- 1 kudos
Got following errorjava.lang.RuntimeException: Installation failed with message:Error installing R package: Could not install package with error: installation of package ‘rgdal’ had non-zero exit status
Full error log available at /databricks/drive...
- 3286 Views
- 1 replies
- 1 kudos
Latest Reply
We can use the below init script to install the packages in the cluster:%scala
dbutils.fs.put("dbfs:/databricks/init_scripts/rlib.sh", """
#!/bin/bash
sudo apt-get install -y libudunits2-dev
sudo add-apt-repository ppa:ubuntugis/ubuntugis-uns...