21-day Boutique blockchain free learning, in-depth expert led the way, to help developers easily play the blockchain! >>>
Background:
1.运用包管理工具dep管理引用包2.有些包需要代理,有包是内部包不能用代理
Realize:
1. Configure SOCKS5 Proxy (skip)
2. Installing Privoxy
通过brew install privoxy进行安装安装成功后,通过brew info privoxy查看安装过后的信息 privoxy: stable 3.0.26 (bottled) ******省略****** To have launchd start privoxy now and restart at login: brew services start privoxy Or, if you don't want/need a background service you can just run: privoxy /usr/local/etc/privoxy/config 从信息中可以看出来配置文件在/usr/local/etc/privoxy/config
3. Configuration settings (Configuration Help document: https://www.privoxy.org/user-manual/config.html)
# privoxy 监听配置listen-address 127.0.0.1:1087# privoxy 代理到socks的地址上forward-socks5 / 127.0.0.1:1086 .# 不需要走http代理的IP或者域名forward 192.168.*.* .forward 10.*.*.* .forward 127.*.*.* .forward *.com .保存配置,启动privoxy
HTTP proxy to let the terminal go privoxy
export http_proxy="http://127.0.0.1:1087"export https_proxy="http://127.0.0.1:1087"终端代理的N中方法: https://blog.fazero.me/2015/09/15/%E8%AE%A9%E7%BB%88%E7%AB%AF%E8%B5%B0%E4%BB%A3%E7%90%86%E7%9A%84%E5%87%A0%E7%A7%8D%E6%96%B9%E6%B3%95/