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