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

How to install MAD via python pip




MAD - Simulation of microservices architectures dynamics, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Topic :: Software Development :: Quality Assurance

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



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_MAD_env

- Active the virtual environment

test_MAD_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_MAD_env

- Active the virtual environment

source test_MAD_env/bin/active


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

To install MAD on Windows(CMD):

py -m pip install MAD

To install MAD on Unix/macOs:

pip install MAD


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

Example:

pip install MAD==0.0.1


Please see the version list below table:

VersionReleased dateCommand
MAD 0.2.22016-04-27T20:38:09Windows:

py -m pip install MAD==0.2.2

Unix/macOs:

pip install MAD==0.2.2

MAD 0.2.12016-04-25T19:59:05Windows:

py -m pip install MAD==0.2.1

Unix/macOs:

pip install MAD==0.2.1

MAD 0.2.02016-04-23T20:48:13Windows:

py -m pip install MAD==0.2.0

Unix/macOs:

pip install MAD==0.2.0

MAD 0.1.02016-04-13T14:33:14Windows:

py -m pip install MAD==0.1.0

Unix/macOs:

pip install MAD==0.1.0

MAD 0.0.32016-04-01T07:11:28Windows:

py -m pip install MAD==0.0.3

Unix/macOs:

pip install MAD==0.0.3

MAD 0.0.22016-03-16T08:19:31Windows:

py -m pip install MAD==0.0.2

Unix/macOs:

pip install MAD==0.0.2

MAD 0.0.12016-03-16T08:17:24Windows:

py -m pip install MAD==0.0.1

Unix/macOs:

pip install MAD==0.0.1


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

Download the distribution file from MAD-0.2.2.zip or the specific MAD version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_MAD_downloaded_file>

On Unix/macOs:

pip install <path_to_MAD_downloaded_file>


List distribution:

- MAD-0.0.2-py3.4.egg
- MAD-0.0.2.zip
- MAD-0.0.3-py3.4.egg
- MAD-0.0.3.zip
- MAD-0.1.0-py3.4.egg
- MAD-0.1.0.zip
- MAD-0.2.0-py3.4.egg
- MAD-0.2.0.zip
- MAD-0.2.1-py3.4.egg
- MAD-0.2.1.zip
- MAD-0.2.2-py3.4.egg
- MAD-0.2.2.zip


Project link:

- Homepage
- Download