pip install packages for a specific release code example
Example 1: how to pip install a specific version
# At the time of writing this numpy is in version 1.19.x
# This statement below will install numpy version 1.18.1
python -m pip install numpy==1.18.1
Example 2: upgrading a pip package while importing it
pip install [package_name] --upgrade