I’m working on a project and I’m using pyinstaller to package the application into an exe file. I tried to implement the google calendar API into the application but when I try to run the exe file it gives an error and I can’t find why this would be happening.
Error:
AttributeError: module 'google.auth.credentials' has no attribute 'CredentialsWithTokenUri'
When I look in the site-packages in that directory that file exists and has a ‘CredentialsWithTokenUri’ function.
Would love any help! Let me know if you need any more info.
Application is also developed using customtkinter which is the library I’m using for display.
6