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

How to install ketama via python pip




ketama - Python bindings for Ketama consistent hash library, it belongs to Classifiers:

- Intended Audience :: Science/Research
- Intended Audience :: System Administrators
- Intended Audience :: Telecommunications Industry
- License :: OSI Approved
- License :: OSI Approved :: BSD License
- Natural Language :: English
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Communications
- Topic :: Software Development
- Topic :: System
- Topic :: System :: Clustering
- Topic :: System :: Distributed Computing

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



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_ketama_env

- Active the virtual environment

test_ketama_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_ketama_env

- Active the virtual environment

source test_ketama_env/bin/active


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

To install ketama on Windows(CMD):

py -m pip install ketama

To install ketama on Unix/macOs:

pip install ketama


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

Example:

pip install ketama==0.0.0


Please see the version list below table:

VersionReleased dateCommand
ketama 0.1.12020-01-27T18:41:28Windows:

py -m pip install ketama==0.1.1

Unix/macOs:

pip install ketama==0.1.1

ketama 0.1.02020-01-27T18:15:05Windows:

py -m pip install ketama==0.1.0

Unix/macOs:

pip install ketama==0.1.0

ketama 0.0.02020-01-27T12:52:39Windows:

py -m pip install ketama==0.0.0

Unix/macOs:

pip install ketama==0.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ketama_downloaded_file>

On Unix/macOs:

pip install <path_to_ketama_downloaded_file>


List distribution:

- ketama-0.0.0.tar.gz
- ketama-0.1.0.tar.gz
- ketama-0.1.1-cp310-cp310-macosx_10_9_universal2.whl
- ketama-0.1.1-cp34-cp34m-macosx_10_6_intel.whl
- ketama-0.1.1-cp34-cp34m-manylinux1_x86_64.whl
- ketama-0.1.1-cp35-cp35m-macosx_10_6_intel.whl
- ketama-0.1.1-cp35-cp35m-manylinux1_x86_64.whl
- ketama-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
- ketama-0.1.1-cp36-cp36m-manylinux1_x86_64.whl
- ketama-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
- ketama-0.1.1-cp37-cp37m-manylinux1_x86_64.whl
- ketama-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl
- ketama-0.1.1-cp38-cp38-macosx_11_0_universal2.whl
- ketama-0.1.1-cp38-cp38m-manylinux1_x86_64.whl
- ketama-0.1.1-cp39-cp39-macosx_10_9_universal2.whl
- ketama-0.1.1.tar.gz


Project link:

- Homepage