cvu icon indicating copy to clipboard operation
cvu copied to clipboard

File "...\cvu\cvu\circle_plot.py", line 25, - from mne.fixes import tril_indices ImportError: cannot import name tril_indices

Open kevroy314 opened this issue 7 years ago • 2 comments

I'm having the same issue this person was https://github.com/aestrivex/cvu/issues/4. mne version is from pip (latest, 0.14). Any suggestions?

kevroy314 avatar May 04 '17 05:05 kevroy314

FYI, I went into circle_plot.py and commented out the import line. I added 'np.' to the front of the tril_indices call (making it 'np.tril_indices...'). Now everything runs properly.

kevroy314 avatar May 04 '17 06:05 kevroy314

I ran into the same issue, and did what @kevroy314 recommended, calling the lower indices from numpy.tril_indices, solving the issue.

bhvieira avatar Sep 07 '18 18:09 bhvieira