Hadoop: Python client driver for HiveServer2 fails to install

后端 未结 3 1399
深忆病人
深忆病人 2020-12-14 09:36

I am trying to install a Python client driver for HiveServer2: https://cwiki.apache.org/confluence/display/Hive/Setting+Up+HiveServer2#SettingUpHiveServer2-PythonClientDrive

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-14 10:04

    Pyhs2 has the following dependencies:

    1. gcc-c++

    2. python-devel.x86_64

    3. cyrus-sasl-devel.x86_64

    So, just run this

    sudo yum install gcc-c++ python-devel.x86_64 cyrus-sasl-devel.x86_64
    
    sudo pip install pyhs2
    

提交回复
热议问题