Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named 'sda'
How to remove the ModuleNotFoundError: No module named 'sda' error?
Thanks
Hi,
In your python environment you have to install padas library.
You can install sda python with following command:
pip install sda
After the installation of sda python library, ModuleNotFoundError: No module named 'sda' error will be solved.
Thanks