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

How to install streamsx.kafka via python pip




streamsx.kafka - Kafka integration for IBM Streams topology applications, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved
- License :: OSI Approved :: Apache Software License
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7

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



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_streamsx.kafka_env

- Active the virtual environment

test_streamsx.kafka_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_streamsx.kafka_env

- Active the virtual environment

source test_streamsx.kafka_env/bin/active


Step 2: OK, now, let flow below content to start the installation streamsx.kafka

To install streamsx.kafka on Windows(CMD):

py -m pip install streamsx.kafka

To install streamsx.kafka on Unix/macOs:

pip install streamsx.kafka


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

Example:

pip install streamsx.kafka==0.1.0


Please see the version list below table:

VersionReleased dateCommand
streamsx.kafka 1.10.22020-12-07T08:20:51Windows:

py -m pip install streamsx.kafka==1.10.2

Unix/macOs:

pip install streamsx.kafka==1.10.2

streamsx.kafka 1.10.12020-06-18T14:58:13Windows:

py -m pip install streamsx.kafka==1.10.1

Unix/macOs:

pip install streamsx.kafka==1.10.1

streamsx.kafka 1.10.02020-05-26T08:32:21Windows:

py -m pip install streamsx.kafka==1.10.0

Unix/macOs:

pip install streamsx.kafka==1.10.0

streamsx.kafka 1.9.02020-02-17T13:08:23Windows:

py -m pip install streamsx.kafka==1.9.0

Unix/macOs:

pip install streamsx.kafka==1.9.0

streamsx.kafka 1.8.12020-02-12T13:06:05Windows:

py -m pip install streamsx.kafka==1.8.1

Unix/macOs:

pip install streamsx.kafka==1.8.1

streamsx.kafka 1.7.02019-11-28T10:01:55Windows:

py -m pip install streamsx.kafka==1.7.0

Unix/macOs:

pip install streamsx.kafka==1.7.0

streamsx.kafka 1.6.22019-11-18T13:23:33Windows:

py -m pip install streamsx.kafka==1.6.2

Unix/macOs:

pip install streamsx.kafka==1.6.2

streamsx.kafka 1.6.12019-09-20T11:10:25Windows:

py -m pip install streamsx.kafka==1.6.1

Unix/macOs:

pip install streamsx.kafka==1.6.1

streamsx.kafka 1.6.02019-09-09T08:39:35Windows:

py -m pip install streamsx.kafka==1.6.0

Unix/macOs:

pip install streamsx.kafka==1.6.0

streamsx.kafka 1.5.02019-09-05T09:36:41Windows:

py -m pip install streamsx.kafka==1.5.0

Unix/macOs:

pip install streamsx.kafka==1.5.0

streamsx.kafka 1.4.12019-09-04T12:33:27Windows:

py -m pip install streamsx.kafka==1.4.1

Unix/macOs:

pip install streamsx.kafka==1.4.1

streamsx.kafka 1.4.02019-09-02T14:01:41Windows:

py -m pip install streamsx.kafka==1.4.0

Unix/macOs:

pip install streamsx.kafka==1.4.0

streamsx.kafka 1.3.02019-08-29T08:28:24Windows:

py -m pip install streamsx.kafka==1.3.0

Unix/macOs:

pip install streamsx.kafka==1.3.0

streamsx.kafka 1.2.42019-06-11T09:47:34Windows:

py -m pip install streamsx.kafka==1.2.4

Unix/macOs:

pip install streamsx.kafka==1.2.4

streamsx.kafka 1.2.22019-06-03T11:33:29Windows:

py -m pip install streamsx.kafka==1.2.2

Unix/macOs:

pip install streamsx.kafka==1.2.2

streamsx.kafka 1.2.12019-05-24T07:06:06Windows:

py -m pip install streamsx.kafka==1.2.1

Unix/macOs:

pip install streamsx.kafka==1.2.1

streamsx.kafka 1.2.02019-05-22T07:34:26Windows:

py -m pip install streamsx.kafka==1.2.0

Unix/macOs:

pip install streamsx.kafka==1.2.0

streamsx.kafka 1.1.02019-05-09T06:59:20Windows:

py -m pip install streamsx.kafka==1.1.0

Unix/macOs:

pip install streamsx.kafka==1.1.0

streamsx.kafka 1.0.12019-02-05T12:48:41Windows:

py -m pip install streamsx.kafka==1.0.1

Unix/macOs:

pip install streamsx.kafka==1.0.1

streamsx.kafka 0.1.12019-01-14T13:47:32Windows:

py -m pip install streamsx.kafka==0.1.1

Unix/macOs:

pip install streamsx.kafka==0.1.1

streamsx.kafka 0.1.02019-01-14T13:33:09Windows:

py -m pip install streamsx.kafka==0.1.0

Unix/macOs:

pip install streamsx.kafka==0.1.0


Step 4: Otherwise, you can install streamsx.kafka from local archives:

Download the distribution file from streamsx.kafka-1.10.2.tar.gz or the specific streamsx.kafka version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_streamsx.kafka_downloaded_file>

On Unix/macOs:

pip install <path_to_streamsx.kafka_downloaded_file>


List distribution:


Project link:

- Homepage