IScala icon indicating copy to clipboard operation
IScala copied to clipboard

notebook Setup error

Open ghost opened this issue 9 years ago • 3 comments

Env: OSX yosemite, python: 2.7.6 Ipython: 3.1.0 java: 1.8.0_40-b27 scala: 2.11.6


Follow instructions here: https://github.com/mattpap/IScala to set it up change --connection-file to --profile to make it work for ipython

fire up a notebook, try a simple fib function definition:

def fib(n:Int):Int = if (n <= 2) 1 else fib(n-1) + fib(n-2)

try to run it, got following error:


JSON deserialization error: JsResultException(errors:List((/user_variables,List(ValidationError(validate.error.missing-path,WrappedArray())))))

Any help will be appreciated.

Thanks

ghost avatar Apr 29 '15 14:04 ghost

Same problem for me!

crazzle avatar Jul 12 '15 14:07 crazzle

I'm running into the same problem trying to run Scala in a jupyter notebook. Has anyone found a solution?

icejungle avatar Sep 09 '15 00:09 icejungle

Even me!

Prabhusarathy18 avatar Feb 24 '20 15:02 Prabhusarathy18