I would like to install a package for wavelet analysis in python and could just find this one here. https://www.pybytes.com/pywavelets/
It seems that this package is not part of Ubuntu repositories, is there a way to add it somehow?
I would like to install a package for wavelet analysis in python and could just find this one here. https://www.pybytes.com/pywavelets/
It seems that this package is not part of Ubuntu repositories, is there a way to add it somehow?
You won't find because python3-PyWavelets is python package.
Run
pip install PyWavelets
If you are getting error pip not found, then
To install with conda
Just found out that a similar package is available through the Ubuntu repositories which is called python3-pywt
You can just download the library manually and stick it in your Phython's lib folder. I've done it in the past with things that weren't in the repos. I forget which folder exactly so if you're not sure if you have it in the right place, just open a Python terminal and try to import it. If it's not the right place it'll fail. I'm on mobile right now, so if somebody doesn't beat me to it, this evening I'll try to get on my PC and see what directory works and then edit this answer.
Here is how I found the package:
This will list, among other results:
Now get more detailed info about it:
The output confirms that this package is the one you want, so install it: