赞
踩
即使打开代理,mac终端默认不走,需要配置
一、复制终端代理命令
export http_proxy=http://127.0.0.1:1089;export https_proxy=http://127.0.0.1:1089;
二、添加环境变量
打开终端,执行
vi ~/.bash_profile
添加
#proxy
alias proxy='export http_proxy=http://127.0.0.1:1089;export https_proxy=http://127.0.0.1:1089;'
alias unproxy='unset all_proxy'
保存
再执行,使配置生效
source ~/.bash_profile
三、验证
#开启代理
proxy
#关闭代理
unproxy
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。