pip 官方镜像被墙,可以使用用国内镜像进行访问
命令行指定镜像
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com <package>
配置文件指定镜像
pip 的配置文件为 ~/.pip/pip.conf
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com
使用 pip 安装包时要使用 root 帐号,配置文件实际位置为 /root/.pip/pip.conf
。
使用 pip
install
命令安装包时,默认会使用配置文件中指定的镜像。