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

How to install capturer via python pip




capturer - Easily capture stdout/stderr of the current process and subprocesses, it belongs to Classifiers:

- Intended Audience :: Information Technology
- Intended Audience :: System Administrators
- Operating System :: Unix
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Communications
- Topic :: Scientific/Engineering :: Human Machine Interfaces
- Topic :: Software Development :: User Interfaces
- Topic :: System
- Topic :: System :: Shells
- Topic :: System :: System Shells
- Topic :: System :: Systems Administration
- Topic :: Terminals
- Topic :: Text Processing
- Topic :: Text Processing :: General

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



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_capturer_env

- Active the virtual environment

test_capturer_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_capturer_env

- Active the virtual environment

source test_capturer_env/bin/active


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

To install capturer on Windows(CMD):

py -m pip install capturer

To install capturer on Unix/macOs:

pip install capturer


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

Example:

pip install capturer==1.0


Please see the version list below table:

VersionReleased dateCommand
capturer 3.02020-03-07T00:34:48Windows:

py -m pip install capturer==3.0

Unix/macOs:

pip install capturer==3.0

capturer 2.42017-05-17T00:25:37Windows:

py -m pip install capturer==2.4

Unix/macOs:

pip install capturer==2.4

capturer 2.32016-11-12T15:52:59Windows:

py -m pip install capturer==2.3

Unix/macOs:

pip install capturer==2.3

capturer 2.22016-10-09T20:04:53Windows:

py -m pip install capturer==2.2

Unix/macOs:

pip install capturer==2.2

capturer 2.1.12015-10-24T11:22:14Windows:

py -m pip install capturer==2.1.1

Unix/macOs:

pip install capturer==2.1.1

capturer 2.12015-06-21T16:04:11Windows:

py -m pip install capturer==2.1

Unix/macOs:

pip install capturer==2.1

capturer 2.02015-06-17T22:49:56Windows:

py -m pip install capturer==2.0

Unix/macOs:

pip install capturer==2.0

capturer 1.12015-06-16T19:47:16Windows:

py -m pip install capturer==1.1

Unix/macOs:

pip install capturer==1.1

capturer 1.02015-06-14T16:19:46Windows:

py -m pip install capturer==1.0

Unix/macOs:

pip install capturer==1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_capturer_downloaded_file>

On Unix/macOs:

pip install <path_to_capturer_downloaded_file>


List distribution:

- capturer-1.0.tar.gz
- capturer-1.1.tar.gz
- capturer-2.0.tar.gz
- capturer-2.1.tar.gz
- capturer-2.1.1.tar.gz
- capturer-2.2.tar.gz
- capturer-2.3-py2.py3-none-any.whl
- capturer-2.3.tar.gz
- capturer-2.4-py2.py3-none-any.whl
- capturer-2.4.tar.gz
- capturer-3.0-py2.py3-none-any.whl (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
- capturer-3.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)


Project link:

- Homepage