嗯,标题本身很明确。我需要使用easy_install安装python的东西,但我需要easy_install通过SOCKS5代理连接。有什么想法吗?
答案 0 :(得分:2)
当我需要保护我的连接时,我正在使用tsocks。它充当网络连接的透明层。创建名为tsocks.conf
的配置文件:
server = 127.0.0.1
server_type = 5
server_port = 1080
然后你就可以像这样使用它(只有easy_install才需要sudo):
TSOCKS_CONF_FILE=tsocks.conf tsocks sudo easy_install -U docutils
旁注,我主要使用带有socks代理功能的ssh(此示例将连接到myserver.com的ssh,并创建一个侦听端口1080的本地socks代理服务器):
ssh -D 1080 myserver.com