ubuntu终端走代理(笔记)

单条命令走代理
pip3 --proxy http://+ip地址:端口号 install 包/库名

当前终端页面走代理:
http+socket通信
export https_proxy=http://+ip地址:端口号 http_proxy=http://+ip地址:端口号  all_proxy=socks5://+ip地址:端口号

http通信:
export http_proxy="http://localhost:port"
export https_proxy="http://localhost:port"

socket通信:
export http_proxy="socks5://127.0.0.1:1080"
export https_proxy="socks5://127.0.0.1:1080"

你可能感兴趣的:(ubuntu,运维,网络)