I’ve noticed that Julia’s performance seems much better on my Linux partition than my Windows one (same GPU, Windows runs on my SSD while Linux is on and HDD). I was hoping to work on a project I have that’s partially written in Python and partially in Julia but loading inline Julia in my Jupyter notebook on Linux always kills the kernel.
import juila
%load_ext julia.magic
fails.
I got the error about statically linked Python and tried loading the API without compiled modules.
from julia.api import Julia
j = Julia(compiled_modeuls=False)
also fails.
Any hints?