-
Every time I execute a cell, which includes displaying a matplotlib plot, the result appears below the cell. However, the cell keeps running, and the loading indicator continues spinning. Consequently, I am unable to run other cells. After investigation, I discovered that my proxy application intercepts the http://[::]:52421 (random ports) request, causing this issue. Despite my efforts, I haven't found a solution to bypass this interception. (I attempted using http://localhost:52421, this time it resulted in the plot opening in another tab in my browser even when the proxy app was running.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you include a snippet of your code? You should end your code with import matplotlib.pyplot as plt
plt.plot([-8, 8])
plt.ylabel("my variable")
plt.tight_layout()
plt.gca() |
Beta Was this translation helpful? Give feedback.
It's already fixed after update during someday in March, thanks a lot, sorry for the delayed reply.