Reputation: 6075
As the title says,
Can someone explain to me what the difference between these two modules are?
python -m pip install gcloud
vs
python -m pip install google-cloud
Upvotes: 2
Views: 426
Reputation: 350
It went from gcloud to google-cloud and later to google-cloud-*
It is now strongly recommended to install the specific google cloud package you would like to use with your application, as the google-cloud package has been deprecated.
gcloud is now a command-line tool that comes with the Cloud SDK
Upvotes: 3