ModuleNotFoundError: No module named '__main__._extensions'; '__main__' is not a packagehow about this solution ?I already install module scipy, numpy, matplotlib and pywt but it still error in this module ?
oh exactly i use python 36-32 versioni already install pip 3 in that command, so i trying like this "pip3 install scipy / pywavelets"and that in the command prompt send me like this "Requirement already satisfied : scipy in c:\user.......\python 36-32\lib\site-packages <1.1.0> and so that numpy to"But, it still error"from ._extensions._pywt import Wavelet, Modes, _check_dtype
ModuleNotFoundError: No module named '__main__._extensions'; '__main__' is not a package"
--Help me to solve this problem, thank you sir
You received this message because you are subscribed to a topic in the Google Groups "PyWavelets" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/pywavelets/FW6HkIVtjG0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to pywavelets+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
To unsubscribe from this group and all its topics, send an email to pywavelets+...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "PyWavelets" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pywavelets+unsubscribe@googlegroups.com.
Upgrade all library
To unsubscribe from this group and stop receiving emails from it, send an email to pywavelets+...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to pywavelets+unsubscribe@googlegroups.com.
"Traceback (most recent call last):File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\Scripts\_dwt.py", line 4, in <module>from ._extensions._pywt import Wavelet, Modes, _check_dtypeModuleNotFoundError: No module named '__main__._extensions'; '__main__' is not a package"In IDLE Python i use code like this line 1 - 10import numpy as npimport pywtfrom ._extensions._pywt import Wavelet, Modes, _check_dtypefrom ._extensions._dwt import (dwt_single, dwt_axis, idwt_single, idwt_axis,upcoef as _upcoef, downcoef as _downcoef,dwt_max_level as _dwt_max_level,dwt_coeff_len as _dwt_coeff_len)__all__ = ["dwt", "idwt", "downcoef", "upcoef", "dwt_max_level", "dwt_coeff_len"]
Oh sure, thanks a lot to youI already delete that code, and that worksfrom ._extensions._pywt import Wavelet, Modes, _check_dtypefrom ._extensions._dwt import (dwt_single, dwt_axis, idwt_single, idwt_axis,upcoef as _upcoef, downcoef as _downcoef,dwt_max_level as _dwt_max_level,dwt_coeff_len as _dwt_coeff_len)and i run again, it's not error and it shows like this>>> dwt<function dwt at 0x06D9C8A0>>>> idwt<function idwt at 0x06D9C8E8>>>> downcoef<function downcoef at 0x06D9C930>>>> upcoef<function upcoef at 0x06D9C978>>>> dwt_max_level<function dwt_max_level at 0x02FA0150>>>> dwt_coeff_len<function dwt_coeff_len at 0x02FA0588>Do you know about this ?The means " dwt_coeff_len at 0x02FA0588 " ?