How to install modules of required version?¶
If you need to install modules of certain version, you must run the following commands:
For Python packages:
pip3 install module==<version>*
where
module
is module name and<version>
is module version.For RPM packages:
apt-get -y install python-module-module=<version_info>*
where
module
is module name and<version_info>
is module version.