Github user ajaygk95 commented on the issue: https://github.com/apache/zeppelin/pull/3206 > > > The error message: > > ``` > [ERROR] /home/cloud-user/ajay/code/csf-cc-zeppelin-k8szep/spark/scala- > 2.11/src/main/scala/org/apache/zeppelin/spark/SparkScala211Interpreter.scala:37: error: class > SparkScala211Interpreter needs to be abstract, since method interpret in class > BaseSparkScalaInterpreter of type (code: String, context: > org.apache.zeppelin.interpreter.InterpreterContext)org.apache.zeppelin.interpreter.InterpreterResult is > not defined > ``` > > complains there's no `interpret` method defined at `BaseSparkScalaInterpreter`. Thanks for the reply. I found the issue. I was using zeppelin 0.8.0 source code where "interpret" method was overriden. I think in the current branch this method is not present.
---