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
Describe the bug
When I ran :MagmaEvaluateLine, a popup showed up with message Out[5]: ✓ Done but a plot didn't show up. I had run :checkhealth and all was ok.
To Reproduce
Steps to reproduce the behavior:
I wrote this code:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-10, 10, 1000)
y = np.sin(x**2)
plt.plot(x, y);
I ran :MagmaInit then chose python3.
I ran all the line using :MagmaEvaluateLine.
Expected behavior
The line plt.plot(x,y); should show a plot, but it only shows Out[5]: ✓ Done
Screenshots
Desktop (please complete the following information):
OS: [wsl (windows subsystem for Linux) windows 10]
The text was updated successfully, but these errors were encountered:
I'm fairly sure that the issue here is that Ueberzug (i.e., what we use to show images) does not work on WSL; if I'm not mistaken, WSL on Windows 10 does not support graphical applications, and WSL on Windows 11 supports graphical applications via Wayland. Ueberzug requires X11.
Therefore, this ends up being just another instance of #15.
Describe the bug
When I ran
:MagmaEvaluateLine
, a popup showed up with messageOut[5]: ✓ Done
but a plot didn't show up. I had run:checkhealth
and all was ok.To Reproduce
Steps to reproduce the behavior:
:MagmaInit
then chosepython3
.:MagmaEvaluateLine
.Expected behavior
The line
plt.plot(x,y);
should show a plot, but it only showsOut[5]: ✓ Done
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: