方法1: 在终端中直接运行命令 export http_proxy=http://proxyAddress:port 1 这个办法的好处是简单直接,并且影响面很小(只对当前终端有效)。 方法2: 把代理服务器地址写入shell配置文件.bashrc或者.zshrc 直接在.bashrc或者.zshrc添加下面内容 export http_proxy="http://localhost:port" export https_proxy="http://localhost:port" 以使用shadowsocks代理为…