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

How to install mdc via python pip




mdc - Mapped Diagnostic Context (MDC) library for python, it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Logging

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



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_mdc_env

- Active the virtual environment

test_mdc_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_mdc_env

- Active the virtual environment

source test_mdc_env/bin/active


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

To install mdc on Windows(CMD):

py -m pip install mdc

To install mdc on Unix/macOs:

pip install mdc


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

Example:

pip install mdc==1.0.0


Please see the version list below table:

VersionReleased dateCommand
mdc 1.2.12019-09-09T06:51:19Windows:

py -m pip install mdc==1.2.1

Unix/macOs:

pip install mdc==1.2.1

mdc 1.2.0.post22019-07-23T07:19:15Windows:

py -m pip install mdc==1.2.0.post2

Unix/macOs:

pip install mdc==1.2.0.post2

mdc 1.2.02019-07-23T06:41:22Windows:

py -m pip install mdc==1.2.0

Unix/macOs:

pip install mdc==1.2.0

mdc 1.1.0.post22019-07-23T06:38:29Windows:

py -m pip install mdc==1.1.0.post2

Unix/macOs:

pip install mdc==1.1.0.post2

mdc 1.1.0.post12018-04-26T11:15:08Windows:

py -m pip install mdc==1.1.0.post1

Unix/macOs:

pip install mdc==1.1.0.post1

mdc 1.1.02018-03-26T16:36:08Windows:

py -m pip install mdc==1.1.0

Unix/macOs:

pip install mdc==1.1.0

mdc 1.0.82018-03-07T21:53:57Windows:

py -m pip install mdc==1.0.8

Unix/macOs:

pip install mdc==1.0.8

mdc 1.0.72018-03-06T19:56:59Windows:

py -m pip install mdc==1.0.7

Unix/macOs:

pip install mdc==1.0.7

mdc 1.0.62018-03-06T19:36:58Windows:

py -m pip install mdc==1.0.6

Unix/macOs:

pip install mdc==1.0.6

mdc 1.0.52018-03-06T16:00:19Windows:

py -m pip install mdc==1.0.5

Unix/macOs:

pip install mdc==1.0.5

mdc 1.0.42018-02-27T16:37:58Windows:

py -m pip install mdc==1.0.4

Unix/macOs:

pip install mdc==1.0.4

mdc 1.0.32018-02-27T16:22:53Windows:

py -m pip install mdc==1.0.3

Unix/macOs:

pip install mdc==1.0.3

mdc 1.0.22018-02-17T18:30:49Windows:

py -m pip install mdc==1.0.2

Unix/macOs:

pip install mdc==1.0.2

mdc 1.0.12018-02-17T18:23:05Windows:

py -m pip install mdc==1.0.1

Unix/macOs:

pip install mdc==1.0.1

mdc 1.0.02018-02-17T17:14:08Windows:

py -m pip install mdc==1.0.0

Unix/macOs:

pip install mdc==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_mdc_downloaded_file>

On Unix/macOs:

pip install <path_to_mdc_downloaded_file>


List distribution:

- mdc-1.0.0.tar.gz
- mdc-1.0.1.tar.gz
- mdc-1.0.2.tar.gz
- mdc-1.0.3.tar.gz
- mdc-1.0.4.tar.gz
- mdc-1.0.5.tar.gz
- mdc-1.0.6.tar.gz
- mdc-1.0.7.tar.gz
- mdc-1.0.8.tar.gz
- mdc-1.1.0.tar.gz
- mdc-1.1.0.post1.tar.gz
- mdc-1.1.0.post2.tar.gz
- mdc-1.2.0-py3-none-any.whl
- mdc-1.2.0.tar.gz
- mdc-1.2.0.post2.tar.gz
- mdc-1.2.1.tar.gz


Project link:

- Homepage