You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to import moabb in a Python environment, I encountered an ImportError related to the mne package. Specifically, the error arises because the pick_types function cannot be imported from mne.io.pick. This issue occurred during the execution of the mne_bids module, which attempts to import pick_types, as shown in the traceback below:
13 frames /usr/local/lib/python3.10/dist-packages/mne_bids/utils.py in
17 from mne.channels import make_standard_montage
18 from mne.io.kit.kit import get_kit_info
---> 19 from mne.io.pick import pick_types
20 from mne.utils import warn as _warn, logger, verbose
21
ImportError: cannot import name 'pick_types' from 'mne.io.pick' (/usr/local/lib/python3.10/dist-packages/mne/io/pick.py)
When attempting to import moabb in a Python environment, I encountered an ImportError related to the mne package. Specifically, the error arises because the pick_types function cannot be imported from mne.io.pick. This issue occurred during the execution of the mne_bids module, which attempts to import pick_types, as shown in the traceback below:
`---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
in <cell line: 1>()
----> 1 import moabb
13 frames
/usr/local/lib/python3.10/dist-packages/mne_bids/utils.py in
17 from mne.channels import make_standard_montage
18 from mne.io.kit.kit import get_kit_info
---> 19 from mne.io.pick import pick_types
20 from mne.utils import warn as _warn, logger, verbose
21
ImportError: cannot import name 'pick_types' from 'mne.io.pick' (/usr/local/lib/python3.10/dist-packages/mne/io/pick.py)
---------------------------------------------------------------------------`
The text was updated successfully, but these errors were encountered: