早上好,我正在尝试使用pip install安装软件包,在这种情况下,docker-compose我想将其安装在Red Hat 8中,我已经安装了docker,但是出现以下错误:
[dockermd@srvdevrma1 ~]$ sudo pip3 install docker-compose
WARNING: Running pip install with root privileges is generally not a good idea. Try pip3 install --user instead.
Collecting docker-compose
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f324ba08e10>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/docker-compose/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f324ba08a20>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/docker-compose/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f324ba08cc0>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/docker-compose/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f324ba084a8>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/docker-compose/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f324ba08630>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/docker-compose/
Could not find a version that satisfies the requirement docker-compose (from versions: )
No matching distribution found for docker-compose
我已经配置了代理和所有内容:
[dockermd@srvdevrma1 ~]$ env | grep proxy
https_proxy=https://E10697:xxxxxx++@10.162.64.36:8080
http_proxy=http://E10697:xxxxxx++@10.162.64.36:8080
您尝试使用pip安装的任何软件包都会发生这种情况
答案 0 :(得分:0)
您需要为sudo
的用户声明代理。最简单的解决方案IMO。
sudo -i
export http_proxy=https://E10697:xxxxxx++@10.162.64.36:8080
export https_proxy=https://E10697:xxxxxx++@10.162.64.36:8080
pip3 install docker-compose
exit