码迷,mamicode.com
首页 > 编程语言 > 详细

[Docker]python 2.7.5 docker-compose安装

时间:2020-04-21 09:27:00      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:ted   ade   cdc   hostname   ddr   download   char   oca   simple   

pip 安装参考本文
https://www.cnblogs.com/leoshi/p/12742195.html

一键安装脚本

cat > pip_install.sh<<‘EOF‘
yum install -y epel-release
yum install -y python-pip
# pip 更新
pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com --upgrade pip
# 安装docker-compose
pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com docker-compose==1.24.1
EOF
bash pip_install.sh

[root@localhost ~]# pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com docker-compose==1.24.1
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Looking in indexes: http://pypi.douban.com/simple/
Collecting docker-compose==1.24.1
  Downloading http://pypi.doubanio.com/packages/dd/e6/1521d1dfd9c0da1d1863b18e592d91c3df222e55f258b9876fa1e59bc4b5/docker_compose-1.24.1-py2.py3-none-any.whl (134 kB)
     |████████████████████████████████| 134 kB 1.1 MB/s 
Requirement already satisfied: enum34<2,>=1.0.4; python_version < "3.4" in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (1.1.10)
Requirement already satisfied: six<2,>=1.3.0 in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (1.14.0)
Requirement already satisfied: backports.ssl-match-hostname>=3.5; python_version < "3.5" in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (3.5.0.1)
Collecting texttable<0.10,>=0.9.0
  Downloading http://pypi.doubanio.com/packages/02/e1/2565e6b842de7945af0555167d33acfc8a615584ef7abd30d1eae00a4d80/texttable-0.9.1.tar.gz (11 kB)
Requirement already satisfied: websocket-client<1.0,>=0.32.0 in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (0.57.0)
Requirement already satisfied: ipaddress>=1.0.16; python_version < "3.3" in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (1.0.16)
Requirement already satisfied: dockerpty<0.5,>=0.4.1 in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (0.4.1)
Requirement already satisfied: cached-property<2,>=1.2.0 in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (1.5.1)
Requirement already satisfied: docopt<0.7,>=0.6.1 in /usr/lib/python2.7/site-packages (from docker-compose==1.24.1) (0.6.2)
Collecting PyYAML<4.3,>=3.10
  Downloading http://pypi.doubanio.com/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz (270 kB)
     |████████████████████████████████| 270 kB 1.5 MB/s 
Collecting docker[ssh]<4.0,>=3.7.0
  Downloading http://pypi.doubanio.com/packages/09/da/7cc7ecdcd01145e9924a8ccbe9c1baf3a362fc75d4cb150676eb5231ea60/docker-3.7.3-py2.py3-none-any.whl (134 kB)
     |████████████████████████████████| 134 kB 4.2 MB/s 
Collecting jsonschema<3,>=2.5.1
  Downloading http://pypi.doubanio.com/packages/77/de/47e35a97b2b05c2fadbec67d44cfcdcd09b8086951b331d82de90d2912da/jsonschema-2.6.0-py2.py3-none-any.whl (39 kB)
Collecting requests!=2.11.0,!=2.12.2,!=2.18.0,<2.21,>=2.6.1
  Downloading http://pypi.doubanio.com/packages/ff/17/5cbb026005115301a8fb2f9b0e3e8d32313142fe8b617070e7baad20554f/requests-2.20.1-py2.py3-none-any.whl (57 kB)
     |████████████████████████████████| 57 kB 727 kB/s 
Collecting docker-pycreds>=0.4.0
  Downloading http://pypi.doubanio.com/packages/f5/e8/f6bd1eee09314e7e6dee49cbe2c5e22314ccdb38db16c9fc72d2fa80d054/docker_pycreds-0.4.0-py2.py3-none-any.whl (9.0 kB)
Requirement already satisfied: paramiko>=2.4.2; extra == "ssh" in /usr/lib/python2.7/site-packages (from docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (2.7.1)
Requirement already satisfied: functools32; python_version == "2.7" in /usr/lib/python2.7/site-packages (from jsonschema<3,>=2.5.1->docker-compose==1.24.1) (3.2.3.post2)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/lib/python2.7/site-packages (from requests!=2.11.0,!=2.12.2,!=2.18.0,<2.21,>=2.6.1->docker-compose==1.24.1) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python2.7/site-packages (from requests!=2.11.0,!=2.12.2,!=2.18.0,<2.21,>=2.6.1->docker-compose==1.24.1) (2020.4.5.1)
Collecting urllib3<1.25,>=1.21.1
  Downloading http://pypi.doubanio.com/packages/01/11/525b02e4acc0c747de8b6ccdab376331597c569c42ea66ab0a1dbd36eca2/urllib3-1.24.3-py2.py3-none-any.whl (118 kB)
     |████████████████████████████████| 118 kB 1.1 MB/s 
Collecting idna<2.8,>=2.5
  Downloading http://pypi.doubanio.com/packages/4b/2a/0276479a4b3caeb8a8c1af2f8e4355746a97fab05a372e4a2c6a6b876165/idna-2.7-py2.py3-none-any.whl (58 kB)
     |████████████████████████████████| 58 kB 3.0 MB/s 
Requirement already satisfied: bcrypt>=3.1.3 in /usr/lib64/python2.7/site-packages (from paramiko>=2.4.2; extra == "ssh"->docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (3.1.7)
Requirement already satisfied: pynacl>=1.0.1 in /usr/lib64/python2.7/site-packages (from paramiko>=2.4.2; extra == "ssh"->docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (1.3.0)
Requirement already satisfied: cryptography>=2.5 in /usr/lib64/python2.7/site-packages (from paramiko>=2.4.2; extra == "ssh"->docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (2.9)
Requirement already satisfied: cffi>=1.1 in /usr/lib64/python2.7/site-packages (from bcrypt>=3.1.3->paramiko>=2.4.2; extra == "ssh"->docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (1.14.0)
Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.1->bcrypt>=3.1.3->paramiko>=2.4.2; extra == "ssh"->docker[ssh]<4.0,>=3.7.0->docker-compose==1.24.1) (2.20)
Installing collected packages: texttable, PyYAML, urllib3, idna, requests, docker-pycreds, docker, jsonschema, docker-compose
    Running setup.py install for texttable ... done
  Attempting uninstall: PyYAML
    Found existing installation: PyYAML 5.3.1
    Uninstalling PyYAML-5.3.1:
      Successfully uninstalled PyYAML-5.3.1
    Running setup.py install for PyYAML ... done
  Attempting uninstall: urllib3
    Found existing installation: urllib3 1.25.9
    Uninstalling urllib3-1.25.9:
      Successfully uninstalled urllib3-1.25.9
  Attempting uninstall: idna
    Found existing installation: idna 2.9
    Uninstalling idna-2.9:
      Successfully uninstalled idna-2.9
  Attempting uninstall: requests
    Found existing installation: requests 2.23.0
    Uninstalling requests-2.23.0:
      Successfully uninstalled requests-2.23.0
  Attempting uninstall: docker
    Found existing installation: docker 4.2.0
    Uninstalling docker-4.2.0:
      Successfully uninstalled docker-4.2.0
  Attempting uninstall: jsonschema
    Found existing installation: jsonschema 3.2.0
    Uninstalling jsonschema-3.2.0:
      Successfully uninstalled jsonschema-3.2.0
Successfully installed PyYAML-3.13 docker-3.7.3 docker-compose-1.24.1 docker-pycreds-0.4.0 idna-2.7 jsonschema-2.6.0 requests-2.20.1 texttable-0.9.1 urllib3-1.24.3

查看安装后的版本

[root@localhost ~]# docker-compose --version
docker-compose version 1.24.1, build 4667896

END

[Docker]python 2.7.5 docker-compose安装

标签:ted   ade   cdc   hostname   ddr   download   char   oca   simple   

原文地址:https://www.cnblogs.com/leoshi/p/12742276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!