赞
踩
- Python 拥有非常丰富的库,且我们常用
pip
或conda
来安装各种库。但是,如果遇到网络较差的时候,下载包可能会很慢,耗费较长时间,甚至出现超时无法下载的情况- 可以采用换源的方法来解决这一问题,即换成国内的镜像。
每次安装库的时候,在命令里加个参数 -i
,并在其后添加一个国内镜像的地址,即可大大提升下载速度。安装命令如下:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple your-lib==version
常见的源有:
如果你那儿的网络总是不给力,又不想每次手动添加,可以直接加在配置文件里,一劳永逸。
conda config --show channels
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
此外,如果你想删除已存在的镜像源,可使用如下命令:
conda config --remove-key channels
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。