pip用国内源升级
pip使用国内源升级
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
常用的国内源
https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学 https://mirrors.aliyun.com/pypi/simple/ # 阿里云 https://pypi.douban.com/simple/ # 豆瓣 https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学 https://pypi.hustunique.com/ # 华中科技大学
升级其他包同样可用
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Numpy
Great works are not done by strength, but by persistence!