输入一下命令查看代理信息
env|grep -i proxy
例如我的终端显示如下
no_proxy=localhost,127.0.0.0/8,::1
NO_PROXY=localhost,127.0.0.0/8,::1
HTTPS_PROXY=http://127.0.0.1:7890/
HTTP_PROXY=http://127.0.0.1:7980/
ALL_PROXY=socks://127.0.0.1:7891/
all_proxy=socks://127.0.0.1:7891/
输入以下命令删除不必要的代理(哪些是不必要的我也不太清楚,以下是经验之删)
unset http_proxy
unset https_proxy
unset HTTP_PROXY
unset HTTPS_PROXY
unset ALL_PROXY
unset all_proxy