Hi everyone, I am using kedro 0.18.14 in ubuntu ...
# questions
e
Hi everyone, I am using kedro 0.18.14 in ubuntu 22.04.3 LTS. I want to use a
pandas.GBQTableDataSet
, but after using OmegaConfigLoader and setting the credentials with
${oc.env:GOOGLE_APPLICATION_CREDENTIALS}
I get the following error:
Copy code
DatasetError: 
This library only supports credentials from google-auth-library-python. See <https://google-auth.readthedocs.io/en/latest/|https://google-auth.readthedocs.io/en/latest/> for help on 
authentication with this library..
My credentials.yml:
gbqcreds: ${oc.env:GOOGLE_APPLICATION_CREDENTIALS}
My catalog.yml:
Copy code
jobs:
  type: pandas.GBQTableDataSet
  dataset: big_query_dataset
  table_name:table
  project: proj
  credentials: gbqcreds
  save_args:
    chunk_size: 100
  load_args:
    reauth: True
    query: " select * from ...... "
Could anyone help me with that?