Why "importerror: No Module Named Builtins" Appears After Importing Hive From Pyhive Package?
I have a simple question to ask. I have been trying to execute HIVE queries from Python using impyla package. But I stuck into cursor problem, already a question has been asked on
Solution 1:
In python 3 the module __builtin__
was renamed to builtins
.
It is possible that you have installed a python 3 package and are trying to run it with python 2.
Post a Comment for "Why "importerror: No Module Named Builtins" Appears After Importing Hive From Pyhive Package?"