https://bugs.kde.org/show_bug.cgi?id=425695
--- Comment #1 from Nikita Sirgienko <warqu...@gmail.com> --- Well, I now understand, what cause the problem. Cantor Julia backend uses Julia C API and this API requests path to some internal file (the "sys.so" file, which you mentioned before). Julia also provide method for getting path (but relative) to this file. Cantor, using information from settings, create absolute path and pass the path to julia code. The problem is, that cantor-backend-julia have been builded with system julia (I suppose, there is package "julia" in KDE Neon repos). But you pass path to local installation from jill. And relative paths to this internal file don't equal. Cantor julia backend uses "../lib/x86_64-linux-gnu/julia/" from system julia installation (from system library libjulia.so, I suppose), but for in-one-dir julia installation from jill you actually need a path "../lib/julia" (and if you manually build Cantor with Julia backend for this jill installation, then this proper path will be used and passed from Juila C API). But I have added some code for working with situation like this, so it will work in future Cantor versions. And have a more proper problem message, if there is a problem with this internal file. -- You are receiving this mail because: You are watching all bug changes.