mne-tools / mne-features

MNE-Features software for extracting features from multivariate time series
https://mne-tools.github.io/mne-features/
BSD 3-Clause "New" or "Revised" License
139 stars 32 forks source link

ModuleNotFoundError: No module named 'mne_features' #85

Open oskarhibbert opened 1 year ago

oskarhibbert commented 1 year ago

After installing through both conda install -c conda-forge mne-features and pip install mne-features, I'm still having trouble importing the module into my Python program: import mne_features. I get the following error:

ModuleNotFoundError: No module named 'mne_features'

What am I missing? Thank you!

agramfort commented 1 year ago

I suspect you have 2 python versions installed on your system or that the install crashed somewhere

hoechenberger commented 1 year ago

@oskarhibbert What you can try to rule out @agramfort's suspicion is:

conda create --name=mne-features --channel=conda-forge --override-channels mne-features
conda run --name=mne-features python -c "import mne_features; print(mne_features.__version__)"

If that works, then during your earlier tests you were indeed using the wrong Python environment.