Assume the machine has an older pip version - example pip 10.0.0
To update pip I use: python -m pip install pip==20.1.1
Is it possible to create a text file with freezed pip version - example - pip == 20.1.1 and install it using pip install -r file.txt. Will all the packages in the file.txt then use the 20.1.1 pip? or will they still use the original pip 10.0.0?