I'm using MNE with the IDLE IDE for Python 3.7 and am having problems
making my raw plot interactive. I was able to overcome this problem when
doing everything in Jupyter.
My input file is edf and not fif. The relevant commands from within my
script are as follows:
directory='/Users/fishbacp/Desktop/my_file.edf'
raw = mn.io.read_raw_edf(directory, preload=True)
raw.plot()
The graph appears, but the scrolling features don't function, nor the HELP
button.
Does `mne sys_info` under "matplotlib" say that you are using the MacOSX
backend for matplotlib? If you do `matplotlib.use('Qt5Agg')` at the top of
your script does it work? The MacOSX backend sometimes has
issues, generally the Qt5Agg backend tends to work better.