google.auth.exceptions.DefaultCredentialsError: file was not found

490 Views Asked by At

I have created Google Cloud Application Default Credentials and it is stored in \AppData\Roaming\gcloud for the local user.

When I try to instantiate any Google Cloud services in python, e.g.

storageclient = storage.Client(), 

I get an error

google.auth.exceptions.DefaultCredentialsError: file c:\oldproject_id.json not found 

It is looking for an old project credentials json I no longer have available. How do I reset it to make it use the Application Default Credentials json?

1

There are 1 best solutions below

0
On

I was able to address this by moving the json key file and explicitly calling os.environ['GOOGLE_APPLICATION_CREDENTIALS'] with the json file name I wanted to use.