清华镜像地址: https://pypi.tuna.tsinghua.edu.cn/simple 例如: 假设要安装 numpy 库,则在原来的语句上添加 -i 和镜像地址即可。 pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple 国内源: 新版ubuntu要求使用https源,要注意。 阿里云: http://mirrors.aliyun.com/pypi/simple/ 中国科技大...
pip的源是通过环境变量或者配置文件来指定的。 1. 临时指定源(环境变量) 每次安装或更新包时,可以通过在pip命令后添加-i参数来临时指定源。例如: pip install package_name -i https://pypi.tuna.tsinghua.edu.cn/simple 上述命令将从清华大学提供的pip镜像源下载package_name包。 示例: pip install pandas -i...