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