python_pip 安装工具包

e.g: pip install pygame http://mirrors.aliyun.com/pypi/simple/

安装方法可以直接在命令行输入pip install -扩展包名字。

加快安装速度可以使用国内镜像源。清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/

豆瓣:http://pypi.douban.com/simple/

问题一、

ERROR: Cannot unpack file xxxx

解决方法:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pygame

原文地址:https://www.cnblogs.com/jiguanghover/p/13617704.html