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

相关文章:

  • 2021-09-29
  • 2019-10-30
  • 2021-04-25
  • 2021-04-29
  • 2021-08-31
  • 2020-05-25
  • 2021-06-08
  • 2021-04-30
猜你喜欢
  • 2021-08-15
  • 2021-09-14
  • 2021-08-29
  • 2021-12-23
  • 2021-09-30
  • 2021-07-07
相关资源
相似解决方案