-
-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suggest using Plots.__init__() #750
Conversation
Codecov Report
@@ Coverage Diff @@
## master #750 +/- ##
=======================================
Coverage 83.08% 83.08%
=======================================
Files 3 3
Lines 668 668
=======================================
Hits 555 555
Misses 113 113 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
But |
I don't know. But following the example in the documentation (https://julialang.github.io/PackageCompiler.jl/dev/examples/plots.html) definitely does not work for me now, as reported in https://discourse.julialang.org/t/plots-do-not-display-unless-i-call-gui-when-using-custom-sysimage/92207 . I've checked this in two different machines (both Linux, Debian). These are the steps (the same as in https://discourse.julialang.org/t/plots-do-not-display-unless-i-call-gui-when-using-custom-sysimage/92207):
using Plots
p = plot(rand(2,2))
display(p)
using PackageCompiler
create_sysimage(["Plots"], sysimage_path="sys_plots.so", precompile_execution_file="precompile_plots.jl")
The only thing shown is
I have no idea what could be overwriting what Note also that a similar thing seems to happen with Makie, as reported in https://discourse.julialang.org/t/makie-doesnt-display-plot-when-using-a-custom-julia-sysimage/38515/4 . |
Why are the tests failing? Can this be merged? |
This solves issue in https://discourse.julialang.org/t/plots-do-not-display-unless-i-call-gui-when-using-custom-sysimage/92207