Any python expert here?
Sarvpriy Arya
2 replies
I am getting this error when I run "pip3 install -r requirements.txt" -
"pkg_resources.DistributionNotFound: The 'pip==20.0.2' distribution was not found and is required by the application"
please help
Replies
Michael Williams@mwilliams_45
it appears you have a version mismatch issue; try upgrading your pip using "python3 -m pip install --upgrade pip", then rerun "pip3 install -r requirements.txt" to see if this resolves the error you're encountering with 'pip==20.0.2' distribution.
Share