Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install hs2client via python pip




hs2client - A package interact with Hive Server 2 via the Thrift protocol, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Information Technology
- License :: OSI Approved
- License :: OSI Approved :: Apache Software License
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Topic :: Database

When you know about this project and you want to new install hs2client to support your project or you get trouble as ModuleNotFoundError: No module named "hs2client" or ImportError: cannot import name "hs2client" in your project, let follow this tutorial to install hs2client



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_hs2client_env

- Active the virtual environment

test_hs2client_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_hs2client_env

- Active the virtual environment

source test_hs2client_env/bin/active


Step 2: OK, now, let flow below content to start the installation hs2client

To install hs2client on Windows(CMD):

py -m pip install hs2client

To install hs2client on Unix/macOs:

pip install hs2client


Step 3: If you want to install a specific hs2client version, add ==<hs2client version> to the end command line

Example:

pip install hs2client==0.1.0


Please see the version list below table:

VersionReleased dateCommand
hs2client 0.1.12018-05-31T15:30:57Windows:

py -m pip install hs2client==0.1.1

Unix/macOs:

pip install hs2client==0.1.1

hs2client 0.1.02018-05-31T12:43:34Windows:

py -m pip install hs2client==0.1.0

Unix/macOs:

pip install hs2client==0.1.0


Step 4: Otherwise, you can install hs2client from local archives:

Download the distribution file from hs2client-0.1.1.tar.gz or the specific hs2client version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hs2client_downloaded_file>

On Unix/macOs:

pip install <path_to_hs2client_downloaded_file>


List distribution:

- hs2client-0.1.0-py2.7.egg
- hs2client-0.1.0-py3-none-any.whl
- hs2client-0.1.0-py3.6.egg
- hs2client-0.1.0.tar.gz
- hs2client-0.1.1-py2.7.egg
- hs2client-0.1.1-py3-none-any.whl
- hs2client-0.1.1-py3.6.egg
- hs2client-0.1.1.tar.gz


Project link:

- Homepage