zoukankan      html  css  js  c++  java
  • pip download in mainland china

    pip install ...
    

    The command above in p.r.china is awfully slow.

    You can use the command below

    pip install the-library-you-want-to-install --trusted-host http://mirrors.aliyun.com/pypi/simple/
    

    or (the tsinghua mirror is not recommended although most well-known)

    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple the-library-you-want-to-install
    

    or

    pip install -i https://mirrors.zju.edu.cn/pypi/web/simple the-library
    

    or

    pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ the-library
    

      

    It is recommended to install packages via pip commands after activating the conda environment.

    You may also find you cannot create a conda environment using

    conda create -n drl python=3.6
    

      because of connection errors. To fix these errors on Ubuntu, you can create a ~/.condarc and edit it as

    default_channels:
      - https://anaconda.mirrors.sjtug.sjtu.edu.cn/pkgs/r
      - https://anaconda.mirrors.sjtug.sjtu.edu.cn/pkgs/main
    custom_channels:
      conda-forge: https://anaconda.mirrors.sjtug.sjtu.edu.cn/cloud/
      pytorch: https://anaconda.mirrors.sjtug.sjtu.edu.cn/cloud/
    channels:
      - defaults
    

      or

    channels:
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
    ssl_verify: true

      

    Ack: https://www.cnblogs.com/dereen/p/anaconda_tencent_mirrors.html

  • 相关阅读:
    Swift语言指南(三)--语言基础之整数和浮点数
    Swift语言指南(二)--语言基础之注释和分号
    Swift语言指南(一)--语言基础之常量和变量
    Swift中文教程(七)--协议,扩展和泛型
    Swift中文教程(六)--枚举和结构
    Swift中文教程(五)--对象和类
    Swift中文教程(四)--函数与闭包
    集合
    java中的集合
    java中集合的使用
  • 原文地址:https://www.cnblogs.com/cxxszz/p/6900666.html
Copyright © 2011-2022 走看看