- MNE version: 1.9.0 (using MNE-Python installers)
- operating system: e.g. macOS 12 / Windows 10 / Ubuntu 18.04
Dear MNE experts,
I have a problem when trying to visualize 3D brains on local computer for all kinds of 3d brain visualizations I tried involving pyvista. To install MNE, I use MNE-Python installers.
As an example, I have the error when running this code example with data provided:
https://mne.tools/1.8/auto_examples/visualization/parcellation.html#sphx-glr-auto-examples-visualization-parcellation-py
Error occurs in this line:
brain = Brain( “fsaverage”, “lh”, “inflated”, subjects_dir=subjects_dir, cortex=“low_contrast”, background=“white”, size=(800, 600), )
The error:
Using pyvistaqt 3d backend.
/usr/lib/python3/dist-packages/spyder/plugins/ipythonconsole/scripts/
conda-activate.sh: line 18: 9782 Segmentation fault
(core dumped)
$CONDA_ENV_PYTHON -m spyder_kernels.console -f $SPYDER_KERNEL_SPEC
Fatal Python error: Segmentation fault
Main thread:
Current thread 0x00007d484ca4e600 (most recent call first):
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
pyvista/plotting/render_window_interactor.py”, line 1372 in initialize
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
pyvistaqt/plotting.py”, line 287 in _setup_interactor
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
pyvistaqt/plotting.py”, line 247 in init
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
pyvistaqt/plotting.py”, line 572 in init
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/_pyvista.py”, line 150 in _build
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/_pyvista.py”, line 256 in init
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/_qt.py”, line 1777 in init
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/_utils.py”, line 391 in func
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/renderer.py”, line 53 in _get_renderer
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
gui/_coreg.py”, line 284 in init
File “”, line 12 in init
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
viz/backends/_utils.py”, line 391 in func
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/mne/
gui/_gui.py”, line 149 in coregistration
File “”, line 12 in coregistration
File “/home/okapi/.config/spyder-py3/temp.py”, line 21 in
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
spyder_kernels/py3compat.py”, line 356 in compat_exec
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
spyder_kernels/customize/spydercustomize.py”, line 473 in exec_code
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
spyder_kernels/customize/spydercustomize.py”, line 740 in _exec_cell
File “/home/okapi/mne-python/1.9.0_0/lib/python3.12/site-packages/
spyder_kernels/customize/spydercustomize.py”, line 689 in runcell
File “/tmp/ipykernel_9782/1346111906.py”, line 1 in
Which results in restartig the kernel.
At first, I suspected the issue might be related to my GPU. However, basic 3D visualization seems to work. For example, I tried to display a sphere using pyvista:
import pyvista as pv
mesh = pv.Sphere()
p = pv.Plotter()
p.add_mesh(mesh)
mesh.plot()
p.show()
The sphere renders correctly, and I can interact with it.
As I faced the same error for previous MNE versions too, I suppose it’s not just version-related issue.
I would be very grateful for any help or suggestions!
All the best,
Viktoria