I created a new conda environment for PiSCAT analysis which uses Python 3.12.4. I am also doing the analysis in Jupyter notebook.
The PiSCAT package installation was completed with no issues, and import piscat also works.
However, running:
from piscat.Localization import particle_localization
gives me the error:
ModuleNotFoundError: No module named 'pywt'
I tries doing a pip install of pywt and pywavelet in my conda environment but the installation was not completed due to errors in the package. Is there any way I can get around this issue?
I created a new conda environment for PiSCAT analysis which uses Python 3.12.4. I am also doing the analysis in Jupyter notebook. The PiSCAT package installation was completed with no issues, and
import piscat
also works. However, running:from piscat.Localization import particle_localization
gives me the error:ModuleNotFoundError: No module named 'pywt'
I tries doing a pip install of pywt and pywavelet in my conda environment but the installation was not completed due to errors in the package. Is there any way I can get around this issue?
(Note: I am not an expert in coding or python)