You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is impossible as long as the Google SDK isn't Python 3 compatible. To get around the problems with them depending on the C versions of modules you can put something like this above the imports:
# python 3 fix for Google relying on C versions of modulestry:
importcPickleimportcStringIOexceptImportError:
import_picklefromioimportStringIOsys.modules['cPickle'] =_picklesys.modules['cStringIO'] =StringIO
Which gets you somewhere, but eventually the code hits something like this and we can't start live-patching their code to get around all these cases:
No description provided.
The text was updated successfully, but these errors were encountered: