Home > Mobile >  Install 'tigerstats' package on databricks
Install 'tigerstats' package on databricks

Time:12-07

Hi I can't install tigerstats package on databricks. Below is my code in R.

devtools::install_github("homerhanumat/tigerstats")

But I get the following error enter image description here

My databricks runtime version is "10.0 (includes Apache Spark 3.2.0, Scala 2.12)"

CodePudding user response:

The problem is in the dependencies of dependencies, primarily dependency on the native Linux libraries. For example, jpeg library depends on the libjpeg-dev package, and terra enter image description here

  • Related