在datalab上安装be_helper

问题描述 投票:0回答:1

我知道BigQuery模块已经安装在datalab上。我只是想使用bq_helper模块,因为我在Kaggle上学到了它。

我做了!pip install -e git+https://github.com/SohierDane/BigQuery_Helper#egg=bq_helper并且它起作用了。

但是我无法导入bq_helper。图片如下所示。

enter image description here

请帮忙。谢谢!

我在Datalab上使用了python2。

google-cloud-platform google-bigquery google-cloud-datalab
1个回答
0
投票

我不熟悉您共享的BigQuery Helper库,但一般来说,在Datalab中,您可能需要重新启动内核才能正确加载库。

我再现了你提出的场景:使用命令!pip install -e git+https://github.com/SohierDane/BigQuery_Helper#egg=bq_helper安装库,然后尝试使用以下命令在笔记本中导入它:

from bq_helper import BigQueryHelper

bq_assistant = BigQueryHelper("bigquery-public-data", "github_repos")
bq_assistant.project_name

起初,它不起作用,我得到了与你相同的错误;然后我点击了重置会话按钮,库已正确加载。

enter image description here

如果这对您不起作用,可能相关的其他一些细节是:

  • 我也在Python2上运行(虽然库的GitHub页面表明它只在Python3.6 +中测试过)。
  • Datalab GCE实例中的Custom元数据参数是:created-with-datalab-version: 20180503created-with-sdk-version: 208.0.2
© www.soinside.com 2019 - 2024. All rights reserved.