How to install modules of required version?

If you need to install modules of certain version, you must run the following commands:

  1. For Python packages:

    pip3 install module==<version>*
    

    where module is module name and <version> is module version.

  2. For RPM packages:

    apt-get -y install python-module-module=<version_info>*
    

    where module is module name and <version_info> is module version.