python中使用提示的python -m pip install --upgrade pip升级失败解决方案

在安装jieba时候显示You should consider upgrading via the ‘python -m pip install --upgrade pip’ command.在这里插入图片描述
1,使用python -m pip install --upgrade pip升级失败
2,使用python -m pip install -U --force-reinstall pip依然失败
3,使用pip install --user --upgrade pip依然失败
最后python -m pip install -U --force-reinstall -i https://pypi.doubanio.com/simple/ pip 换源更新就解决了。
注:要管理员身份运行
在这里插入图片描述