Python : Pip can't install anything, and refuses to look at any other requirements file

Viewed 30

I've got a python project that I am trying to troubleshoot, but I can't install any of the needed modules. Pip is only looking in one file location for requirements, but it still can't install any of the requirements from it.

Looking in links: path/to/requirements
ERROR: Could not find a version that satisfies the requirement flask==2.2.2 (from versions: none)
ERROR: No matching distribution found for flask==2.2.2

If I try using a different requirements.txt in the same directory, it says the same thing, still with the original path.

If I try to install without using a requirements file (i.e. pip install flask), I get something similar.

Looking in links: path/to/requirements
ERROR: Could not find a version that satisfies the requirement flask (from versions: none)
ERROR: No matching distribution found for flask

I've tried running no dependencies, the PATH doesn't look unusual, Python is installed for all users, and I've uninstalled and reinstalled Python and restarted my system. Nothing is changing and I'm out of ideas.

0 Answers
Related