Could not find a version that satisfies the requirement pkg-resources==0.0.0 (from -r requirements.txt (line 54)) (from versions: ) No matching distribution ...
27.01.2019 · Removing the line "pkg-resources==0.0.0" from requirements.txt fixes the issue. The text was updated successfully, but these errors were encountered: Copy link
17.11.2016 · Why does pip freeze list "pkg-resources==0.0.0"? 0 Elastic Beanstalk, Django deployment error, Could not find a version that satisfies the requirement pkg-resources==0.0.0
17.08.2016 · pkg-resources==0.0.0 (Same btw. for pip freeze --local) While this is consistent with the help text $> pip freeze --help | grep '\--all' --all Do not skip these packages in the output: pip, setuptools, distribute, wheel having pkg-resources in the pip freeze output doesn't seem very useful and might even be harmful.
I installed the packages using the command line: pip install -r requirements.txt. Then I got the problem: ERROR: Could not find a version that satisfies the ...
When deploying on a debian 8.5 running "pip install -r requirements.txt" pip complains that pkg-resources is "not found" but there is a global package installed ...
25.03.2021 · How to fix: No matching distribution found for pkg-resources==0.0.0 Write your dependencies and filter out the pkg-resources pip freeze | grep --invert-match pkg-resources > requirements.txt Remove the virtualenv, Assuming it is stored in a folder called “venv” rm -rf venv Create a clean venv python3 -m venv venv Activate it
07.09.2017 · To give an actually useful answer, you need to remove the line 'pkg-resources==0.0.0' from requirements.txt, then push the changes to your repository before doing a Heroku push, only removing the line won't work