You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm afraid this is just a general problem right now with julia: precompile doesn't actually save machine code, so even with precompile, a lot of stuff needs to be recompiled in every new julia session...
I think there are only two options that could work right now: 1) you could try to compile these packages into your sysimage. I've never done that and it might be very complicated... 2) Load just using CSVFiles, DataFrames. That will cut down on the number of packages that are being loaded, so it should help with the time the using takes. It won't help with the second issue...
Hello,
I tried to load a small dataset and it seems to take a lot of time to do so. It also seems that
using Queryverse
takes a significant amount of time.The second time I load data is much faster though.
Is there a command to precompile or another way to make this faster?
The text was updated successfully, but these errors were encountered: