我们正试图从this python example中获得以下命令,以将CSV文件从Google Cloud Storage加载到BigQuery中:
from google.cloud import bigquery
但是在执行pip install google.cloud
之后,当我们尝试运行该命令时收到以下错误:
ImportError:无法导入名称bigquery
如果我们安装了google.cloud
-不应包含bigquery
吗?缺少什么?
我们正在运行Python 2.7。
答案 0 :(得分:6)
看起来像installing google-cloud
may once have behaved as you expect, but no longer does:
警告:不建议使用google-cloud Python软件包。从2018年6月18日起,此软件包将不再安装任何其他软件包。请安装您的应用程序所需的product-specific google-cloud-* packages。
The documentation现在说Python BigQuery客户端库称为google-cloud-bigquery
。尝试安装它。