Brand new computer. Fresh anaconda install (Python 3.12 and anaconda 2024.10-1).
import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
% matplotlib inline
fig1,ax = plt.subplots()
ax.plot(np.random.rand(100))
No plot appears! I have to execute plt.show()
This is very disturbing. Any ideas on what is going on? How can I fix it? TIA
6 posts - 2 participants