python 安装国内镜像源
当python 的 包管理器 pip 有时候网络不好,甚至下载失败的时候可以换国内的镜像源来试试,就和 npm设置淘宝源一样
临时配置镜像源
pip3 install <package-name> -i https://pypi.tuna.tsinghua.edu.cn/simple
这个是清华源,还有中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple, 以及 豆瓣 http://pypi.douban.com/simple/,
阿里 https://mirrors.aliyun.com/pypi/simple/
全局配置镜像源
pip config set global.index-url https://xxxx
查看镜像源
pip config list