Open oskarhibbert opened 2 years ago
I suspect you have 2 python versions installed on your system or that the install crashed somewhere
@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.
After installing through both
conda install -c conda-forge mne-features
andpip 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!