This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author paul.moore
Recipients baterflyrity, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-09-09.07:23:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631172230.0.0.105431963818.issue45148@roundup.psfhosted.org>
In-reply-to
Content
From the documentation:

> upgrade indicates whether or not to upgrade an existing installation of an earlier version of pip to the bundled version.

Note the comment "to the bundled version". This command will not access the internet (also noted in the documentation) and so will not get a later version than the bundled one.

To get the latest version of pip, you need to use

    /path/to/your/python -m pip install --upgrade pip

Note:

1. You must *not* use the pip executable, you must use `python -m pip`, as the command will be upgrading the pip executable and Windows won't let you upgrade an executable you are using.
2. You should use the full path to your Python, or ensure by other means that you are running the correct copy of Python. This command only upgrades the copy of pip associated with the Python interpreter you use to run the upgrade command.
History
Date User Action Args
2021-09-09 07:23:50paul.mooresetrecipients: + paul.moore, tim.golden, zach.ware, steve.dower, baterflyrity
2021-09-09 07:23:49paul.mooresetmessageid: <1631172230.0.0.105431963818.issue45148@roundup.psfhosted.org>
2021-09-09 07:23:49paul.moorelinkissue45148 messages
2021-09-09 07:23:49paul.moorecreate