AlanSTACK
AlanSTACK

Reputation: 6075

Whats the difference between the gcloud and google-cloud modules in python

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

Answers (1)

Ryan Joseph
Ryan Joseph

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

Related Questions