Why Does "pip Install Google.cloud" Not Enable Bigquery?
We are trying to get the following command to work from this python example for loading a CSV file into BigQuery from Google Cloud Storage: from google.cloud import bigquery But
Solution 1:
It looks like installing google-cloud
may once have behaved as you expect, but no longer does:
WARNING: The google-cloud Python package is deprecated. On June 18, 2018, this package will no longer install any other packages. Please install the product-specific google-cloud-* packages needed for your application.
The documentation now says that the Python BigQuery client library is called google-cloud-bigquery
. Try installing that instead.
Post a Comment for "Why Does "pip Install Google.cloud" Not Enable Bigquery?"