gpt4 book ai didi

Python Pyhive 模块无法导入名称配置单元

转载 作者:可可西里 更新时间:2023-11-01 14:56:10 28 4
gpt4 key购买 nike

我想使用 pyhive 将 Python 连接到 hive。我正在使用下面的 python 脚本在我的本地执行。

#!/usr/bin/env python
# coding: utf-8
from pyhive import hive
from TCLIService.ttypes import TOperationState
def mysql_connect(host, port, username):
conn = hive.Connection(host=host, port=port, username=username)
return conn.cursor()

cursor = mysql_connect("localhost", 50070, "hduser")
cursor.execute("show databases")
print_log(cursor)

我将 pyhive 放在 /usr/local/lib/python2.7/dist-packages 位置,但我最终得到以下输出

vaibhav@vaibhav-Lenovo-G570:~/Desktop/Python/Automation$ ./pyhive_test.py
Traceback (most recent call last):
File "./pyhive_test.py", line 9, in <module>
cursor = mysql_connect("localhost", 50070, "hduser")
File "./pyhive_test.py", line 6, in mysql_connect
conn = hive.Connection(host=host, port=port, username=username)
File "/usr/local/lib/python2.7/dist-packages/pyhive/hive.py", line 131, in __init__
self._transport.open()
File "/usr/local/lib/python2.7/dist-packages/thrift_sasl/__init__.py", line 80, in open
status, payload = self._recv_sasl_message()
File "/usr/local/lib/python2.7/dist-packages/thrift_sasl/__init__.py", line 101, in _recv_sasl_message
payload = read_all_compat(self._trans, length)
File "/usr/local/lib/python2.7/dist-packages/thrift_sasl/six.py", line 31, in <lambda>
read_all_compat = lambda trans, sz: trans.readAll(sz)
File "/home/vaibhav/.local/lib/python2.7/site-packages/thrift/transport/TTransport.py", line 60, in readAll
chunk = self.read(sz - have)
File "/home/vaibhav/.local/lib/python2.7/site-packages/thrift/transport/TSocket.py", line 132, in read
message='TSocket read 0 bytes')
thrift.transport.TTransport.TTransportException: TSocket read 0 bytes

编辑1.文件名由Pyhive改为pyhive_test

  1. pyhive.py 已从目录中删除

尝试过的可能解决方案:1.安装了python2.7和python 3.4两个版本。我 卸载了 Python3.4 但文件夹似乎仍然存在于 /usr/本地/库/。我运行了下面的一些命令来检查我的 python 的安装位置和 PYTHONPATH 中可用的包

vaibhav@vaibhav-Lenovo-G570:~$ which -a python
/usr/bin/python
vaibhav@vaibhav-Lenovo-G570:~$ python -c "import sys, pprint; pprint.pprint(sys.path)"
['',
'/home/vaibhav',
'/usr/lib/python2.7/dist-packages',
'/usr/lib/python2.7',
'/usr/lib/python2.7/plat-x86_64-linux-gnu',
'/usr/lib/python2.7/lib-tk',
'/usr/lib/python2.7/lib-old',
'/usr/lib/python2.7/lib-dynload',
'/home/vaibhav/.local/lib/python2.7/site-packages',
'/usr/local/lib/python2.7/dist-packages',
'/usr/lib/python2.7/dist-packages/PILcompat',
'/usr/lib/python2.7/dist-packages/gtk-2.0',
'/usr/lib/pymodules/python2.7',
'/usr/lib/python2.7/dist-packages/ubuntu-sso-client']

2。从提到的链接中获得引用 here他们提到在虚拟环境中使用它或使用干净的 python 。没有使用它们中的任何一个,也不知道它将如何影响现有的配置。

3.我使用 sudo 安装了 Pyhive,所以我更改了权限 link但仍然遇到同样的问题。

最佳答案

您要启动的文件名为 pyhive.py

当你做的时候

from pyhive import hive

在你的 pyhive.py 中,然后它将尝试从 your 模块导入 hive,而不是从 pyhive库。

请将您正在启动的文件命名为其他名称,并避免使用现有模块/库的名称。

来自docs :

When a module named spam is imported, the interpreter first searches for a built-in module with that name. If not found, it then searches for a file named spam.py in a list of directories given by the variable sys.path. sys.path is initialized from these locations:

  • the directory containing the input script (or the current directory).
  • PYTHONPATH (a list of directory names, with the same syntax as the shell variable PATH).
  • the installation-dependent default.

关于Python Pyhive 模块无法导入名称配置单元,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44744845/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com