Search code examples
rdockerapache-zeppelin

R interpreter missing in zeppeling docker image


I´m working with zeppeling notebook on a Docker container from the oficial apache image: https://hub.docker.com/r/apache/zeppelin

The issue is that I´m not finding the R interpreter there

enter image description here

If I try to import a R library I get an error saying that the interpreter is not available:

enter image description here

I´m not sure if can be installed from the working container, but that won´t be the best solution for this case since it would require to do it each time the container is started


Solution

  • R is included, but it is not available as default interpreter. You need to call it %spark.r or %r:

    enter image description here