我无法让 pip3 在我的 ec2 实例上运行。一些研究表明,pip 在端口 3128 上运行,我已在安全组中打开该端口。我已使用 netcat 和 telnet 验证了它是否正常工作。
我不知道这是否重要,但它只有当我监听 0.0.0.0 而不是 127.0.0.1 时才有效。
无论如何,pip3 无法安装任何东西。我在网上找到的所有内容都暗示我位于代理或公司防火墙后面,而事实并非如此。基本 ec2 实例,基本预配置 VPC。
所有 pip 包的确切错误都是相同的,但目前我正在尝试获取 xmlsec。
$ pip3 install xmlsec
Collecting xmlsec
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7f86aab4add8>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/xmlsec/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7f86aab4a860>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/xmlsec/
^COperation cancelled by user
有人有什么想法吗?非常感谢。