Could not find a version that satisfies the requirement pkg-resources==0.0.0
Remove pkg-resources==0.0.0
from requirements.txt
if you wish to avoid the problem next time you do a freeze, use pip uninstall pkg-resources==0.0.0
Remove Following line from requirements.txt.
pkg-resources==0.0.0
To avoid having it in requirements.txt everytime you do a freeze, remove it from your virtual environment with pip uninstall pkg-resources==0.0.0
cat requirements.txt | grep --invert-match pkg-resources | xargs -n 1 pip install
refer to the link for a more detailed write-up: https://code-specialist.com/python/pkg-resources