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

How to install zLOG via python pip




zLOG - A general logging facility, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Framework :: Zope
- Framework :: Zope :: 2
- License :: OSI Approved :: Zope Public License
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython

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



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_zLOG_env

- Active the virtual environment

test_zLOG_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_zLOG_env

- Active the virtual environment

source test_zLOG_env/bin/active


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

To install zLOG on Windows(CMD):

py -m pip install zLOG

To install zLOG on Unix/macOs:

pip install zLOG


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

Example:

pip install zLOG==2.11.0b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
zLOG 3.12020-11-18T13:47:55Windows:

py -m pip install zLOG==3.1

Unix/macOs:

pip install zLOG==3.1

zLOG 3.02016-04-03T13:07:39Windows:

py -m pip install zLOG==3.0

Unix/macOs:

pip install zLOG==3.0

zLOG 2.12.02012-08-30T14:54:15Windows:

py -m pip install zLOG==2.12.0

Unix/macOs:

pip install zLOG==2.12.0

zLOG 2.11.22015-06-15T23:30:21Windows:

py -m pip install zLOG==2.11.2

Unix/macOs:

pip install zLOG==2.11.2

zLOG 2.11.12008-08-05T14:17:00Windows:

py -m pip install zLOG==2.11.1

Unix/macOs:

pip install zLOG==2.11.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_zLOG_downloaded_file>

On Unix/macOs:

pip install <path_to_zLOG_downloaded_file>


List distribution:


Project link:

- Homepage