Thanks a lot for this prompt reaction.
I can now import 'julia' into Python, but I don't seem to get the right results:
>>> from julia import Julia
>>> j = Julia()
>>> j.eval('PyObject((1,2,3))') # works fine!
(1, 2, 3)
>>> j.call('1+1') # what is this ...
23296656
>>> j.call('sqrt(2.0)') # ... and this?
173117264
>>> j.run('1+1') # shouldn't this work?
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: Julia exception: MethodError(run,("1+1",))
I am sorry I bother everybody here. Maybe my installation is too 'kaputt' by now.