提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
文章目录
前言
一、命令行设置代理
sh
export http_proxy="http://addr:port"
二、python包下载
设置代理
3
pip3 --proxy="http://addr:port" install module
指定下载源
清华源:
sh
pip install module -i https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣源:
sh
pip install module -i https://pypi.douban.com/simple
设置超时
sh
pip --default-timeout=500 install catboost
pip --default-timeout=500 install -U pip catboost
离线安装
sh
pip install catboost-0.24.2-cp36-none-win_amd64.whl
三、git设置代理
sh
# 一次性代理
git clone -c http.proxy="http://127.0.0.1:1087" https://github.com/
# 全局设置代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
# 设置和取消代理
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy