laszukdawid / PyEMD

Python implementation of Empirical Mode Decompoisition (EMD) method
https://pyemd.readthedocs.io/
Apache License 2.0
867 stars 224 forks source link

No module named 'PyEMD' #108

Closed fachif closed 2 years ago

fachif commented 2 years ago

Describe the bug I've been trying to run the EMD function in my jupyter notebook but I get the following message: No module named 'PyEMD'. I don't have the same issue when running in the spyder IDE. The functions that are used in the .ipynb and .py are the same, and the way I import EMD is also the same, following the structure: from PyEMD import EMD Do you have an idea of what could be the issue?

laszukdawid commented 2 years ago

You likely didn't install it in your environment. Please google for installing packages in specific environment, especially managing kernals in jupyter notebook.

Sorry, but this isn't related to PyEMD and I've already replied to the same question in this GitHub repository many many times.

DominiqueMakowski commented 2 years ago

I had this issue and scratched my head for some time, until I discovered that it was caused by a conflict with another package.

The solution for me was to run:

pip uninstall pyemd first and then reinstall EMD-signal