美文网首页
Python(anaconda)快速安装第三方库

Python(anaconda)快速安装第三方库

作者: 沐辰老爹 | 来源:发表于2017-10-13 13:23 被阅读0次

    使用anaconda时,因为官方的conda-forge托管库安装常常特别慢,这时就需要中国地区的镜像了,包括下载anaconda使用镜像会使速度提高很多。

    清华开源镜像
    进入镜像我们点击anacodna镜像后的问号

    配置1.png

    进入下一个页面,我们按照流程依次在cmd输入

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
    
    配置2.png

    下载也使用开源镜像--

    点击下载链接

    这时我们在选取conda下载,根据所需要的版本下载即可,速度飞起。

    选择conda

    整个配置完成后,我们安装conda-forge官方库中的任何三方库就是非常方便和快捷。

    相关文章

      网友评论

          本文标题:Python(anaconda)快速安装第三方库

          本文链接:https://www.haomeiwen.com/subject/nndzyxtx.html