I've had to install Python packages and libraries using pip, but every time I do, it says I'm using an older version of pip, and that v18.1 is available by running the command
python -m pip install --upgrade pip
When I run this command, it just says the same thing. It apparently can't update itself because it's outdated. Is there any way to get around this, maybe by manually updating it?
Thanks in advance, community!
Update: The OS I'm using is currently Windows 10 and Python 3.6.4. The following screenshot is what outputs when running the command.

解决方案
Upgrading pip
On Linux or macOS:
pip install -U pip
On Windows:
python -m pip install -U pip
用户在Windows 10和Python 3.6.4环境下遇到pip更新问题,提示旧版本pip无法自我更新到v18.1。尝试使用推荐的升级命令未成功。解决方案提供了在Linux/macOS和Windows上升级pip的命令。


被折叠的 条评论
为什么被折叠?



