善用镜像 事半功N倍。
免去外网的速度过慢问题
https://npm.taobao.org/mirrors/
阿里云镜像
比如 你要下载pandas
1、阿里云
pip install pandas -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com/pypi/simple
而不是 简单地
pip install pandas
速度可能差了100倍。
2、清华
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyecharts



