0

I am trying to import bigquery from datalab package in python 3.7.*, but it is throwing invalid syntax error.

I tried installing the google-cloud-datalab package but getting the error saying ERROR:

No matching distribution found for google-cloud-datalab

I am trying to import the below packages

from google.datalab.ml import TensorBoard

import datalab.bigquery as bq.   
BenT
  • 3,172
  • 3
  • 18
  • 38

1 Answers1

1

No matching distribution found for google-cloud-datalab means the package does not support python 3.7. Maybe try python 3.6

However, you might have the wrong package name
Try pip install datalab

Kurtis Streutker
  • 1,157
  • 10
  • 13
  • There is no `google-cloud-datalab` library on the official PyPi. But, [datalab](https://pypi.org/project/datalab/) seems to be the right option. – Laurent LAPORTE Jun 24 '19 at 19:20
  • This library can be installed in Python 3.7 (with a version incompatibility: "ERROR: jsonschema 3.0.1 has requirement six>=1.11.0, but you'll have six 1.10.0 which is incompatible."). – Laurent LAPORTE Jun 24 '19 at 19:21