I was trying to upgrade to the latest version of a package I had installed with pip
, but for some reason it won't get the latest version. I've tried uninstalling the package in question, or even reinstalling pip
entirely, but it still refuses to get the latest version from PyPI. When I try to pin the package version (e.g. pip install package==0.10.0
) it says that it "Could not find a version that satisfies the requirement package==0.10.0 (from versions: ...)"
pip search package
even acknowledges that the installed version isn't the latest, labeling the two versions for me.
I've seen other questions with external files or local versions, but I've tried the respective solutions (--allow-external
doesn't exist anymore, and --no-cache-dir
doesn't help) and I'm still stuck on the older version.