设置pip的默认为清华镜像,修改默认超时时间timeout

设置pip的默认为清华镜像

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

修改默认超时时间
pip --default-timeout=60000 install -U pip

单次修改超时时间

pip --default-timeout=600 install ** #**是包名

conda镜像源设置:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
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/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --set show_channel_urls yes

你可能感兴趣的:(进阶技巧)