How to display system info in an mne project?

There was a CLI command something like mne info which was used to print the detes of the current env, can anybody tell what was the exact command?

Something like this:

Platform macOS-26.1-arm64-arm-64bit-Mach-O
Python 3.13.7 (main, Aug 14 2025, 11:12:11) [Clang 17.0.0 (clang-1700.0.13.3)]
Executable /Users/karahanyilmazer/Coding/python/venvs/neurofeedback_13/bin/python
CPU Apple M4 Pro (12 cores)
Memory 48.0 GiB

Core
β”œβ˜’ mne 1.10.0 (outdated, release 1.11.0 is available!)
β”œβ˜‘ numpy 2.3.5 (unknown linalg bindings)
β”œβ˜‘ scipy 1.16.3
β””β˜‘ matplotlib 3.10.7 (backend=QtAgg)

Numerical (optional)
β”œβ˜‘ sklearn 1.7.2
β”œβ˜‘ pandas 2.3.3
β””β˜ unavailable numba, nibabel, nilearn, dipy, openmeeg, cupy, h5io, h5py

Visualization (optional)
β”œβ˜‘ qtpy 2.4.3 (PySide6=6.10.1)
β”œβ˜‘ pyqtgraph 0.14.0
β”œβ˜‘ mne-qt-browser 0.7.4
β””β˜ unavailable pyvista, pyvistaqt, vtk, ipympl, ipywidgets, trame_client, trame_server, trame_vtk, trame_vuetify

Ecosystem (optional)
β”œβ˜‘ mne-icalabel 0.8.1
β””β˜ unavailable mne-bids, mne-nirs, mne-features, mne-connectivity, mne-bids-pipeline, neo, eeglabio, edfio, mffpy, pybv

It’s

mne sys_info

You can also use it from Python:

import mne

mne.sys_info()
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.