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

How to install isbg via python pip




isbg - a script that makes it easy to scan an IMAP inbox for spam usingSpamAssassin and get your spam moved to another folder., it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Communications
- Topic :: Communications :: Email
- Topic :: Communications :: Email :: Filters
- Topic :: Communications :: Email :: Post-Office
- Topic :: Communications :: Email :: Post-Office :: IMAP
- Topic :: Utilities

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



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_isbg_env

- Active the virtual environment

test_isbg_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_isbg_env

- Active the virtual environment

source test_isbg_env/bin/active


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

To install isbg on Windows(CMD):

py -m pip install isbg

To install isbg on Unix/macOs:

pip install isbg


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

Example:

pip install isbg==0.98


Please see the version list below table:

VersionReleased dateCommand
isbg 2.3.12020-08-17T21:34:55Windows:

py -m pip install isbg==2.3.1

Unix/macOs:

pip install isbg==2.3.1

isbg 2.3.02020-02-08T19:19:05Windows:

py -m pip install isbg==2.3.0

Unix/macOs:

pip install isbg==2.3.0

isbg 2.2.12019-11-13T05:35:36Windows:

py -m pip install isbg==2.2.1

Unix/macOs:

pip install isbg==2.2.1

isbg 2.1.52019-01-09T17:59:55Windows:

py -m pip install isbg==2.1.5

Unix/macOs:

pip install isbg==2.1.5

isbg 2.1.42018-12-08T04:06:40Windows:

py -m pip install isbg==2.1.4

Unix/macOs:

pip install isbg==2.1.4

isbg 2.1.32018-10-24T18:33:56Windows:

py -m pip install isbg==2.1.3

Unix/macOs:

pip install isbg==2.1.3

isbg 2.1.22018-09-19T18:36:36Windows:

py -m pip install isbg==2.1.2

Unix/macOs:

pip install isbg==2.1.2

isbg 2.1.12018-07-30T07:08:05Windows:

py -m pip install isbg==2.1.1

Unix/macOs:

pip install isbg==2.1.1

isbg 0.992010-03-03T14:50:09Windows:

py -m pip install isbg==0.99

Unix/macOs:

pip install isbg==0.99

isbg 0.982009-12-08T14:10:46Windows:

py -m pip install isbg==0.98

Unix/macOs:

pip install isbg==0.98


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_isbg_downloaded_file>

On Unix/macOs:

pip install <path_to_isbg_downloaded_file>


List distribution:

- isbg-0.98-py2.6.egg
- isbg-0.98.tar.gz
- isbg-0.99-py2.6.egg
- isbg-0.99.tar.gz
- isbg-2.1.1.tar.gz
- isbg-2.1.2.tar.gz
- isbg-2.1.3.tar.gz
- isbg-2.1.4.tar.gz
- isbg-2.1.5.tar.gz
- isbg-2.2.1.tar.gz
- isbg-2.3.0.tar.gz
- isbg-2.3.1.tar.gz


Project link:

- Homepage