202107281353 - 使用python的报错记录
Traceback (most recent call last):
File "pyhive.py", line 3, in <module>
from pyhive import hive
File "/data01/bonc_zj/test/hz/pyhive.py", line 3, in <module>
from pyhive import hive
ImportError: cannot import name hive
因为py文件名为 pyhive.py ,重命名即可
Traceback (most recent call last):
File "ph.py", line 3, in <module>
from pyhive import hive
ImportError: bad magic number in 'pyhive': b'\xd1\xf2\r\n'
将pyhive.pyc文件删除即可
Traceback (most recent call last):
File "ph.py", line 3, in <module>
from pyhive import hive
ModuleNotFoundError: No module named 'pyhive'
pip install pyhive
Traceback (most recent call last):
File "ph.py", line 3, in <module>
from pyhive import hive
File "/data01/bonc_zj/.local/lib/python3.6/site-packages/pyhive/hive.py", line 18, in <module>
from TCLIService import TCLIService
File "/data01/bonc_zj/.local/lib/python3.6/site-packages/TCLIService/TCLIService.py", line 9, in <module>
from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException
ModuleNotFoundError: No module named 'thrift'
pip install thrift
Traceback (most recent call last):
File "ph.py", line 10, in <module>
password='bonc@123')
File "/data01/bonc_zj/.local/lib/python3.6/site-packages/pyhive/hive.py", line 203, in __init__
import sasl
ModuleNotFoundError: No module named 'sasl'
pip install sasl

浙公网安备 33010602011771号