1

I read this article but I still don't understand how I have to set up the environment variable with the .json file with the credentials. Do I have to enter something in the Terminal or write something in my Python code?

Also, is the path relative to the user directory? Thanks

ocram
  • 1,384
  • 6
  • 20
  • 36

1 Answers1

0

You can do either: the key part is that the environmental variable must be present for the SDK to pick up in the code that you're running. You could set it programmatically in Python (example) or in your terminal (example), depending on what you want to do. You just need the process that's executing your code to have the variable set in its environment.

Use an absolute path.

Community
  • 1
  • 1
Will Hayworth
  • 1,272
  • 10
  • 22