docker导出日志到本地的方法是什么
300
2022-10-30
第三章 九析带你一分钟轻松完爆 docker-compose 安装
目录
1 前言
2 环境准备
3 安装 docker-compose
4 验证 docker-compose
5 troubleshooting
5.1 jsonschema 版本不匹配
5.2 cffi 版本不匹配
5.3 dnspython 版本不匹配
5.4 python-ldap 版本不匹配
5.5 subprocess32 卸载失败
1 前言
本章采用 pip 安装 docker-compose 1.25.0 版本。
2 环境准备
yum install -y epel-release yum install -y openldap-devel yum install -y python-devel yum install -y python-pippip install --upgrade pip
3 安装 docker-compose
pip install docker-compose
4 验证 docker-compose
docker-compose version
5 troubleshooting
5.1 jsonschema 版本不匹配
ERROR: jsonschema 3.2.0 has requirement six>=1.11.0, but you'll have six 1.9.0 which is incompatible.
执行如下语句:
pip install six --user -Upip install ipython --user -U
5.2 cffi 版本不匹配
ERROR: cryptography 2.8 has requirement cffi!=1.11.3,>=1.8, but you'll have cffi 1.6.0 which is incompatible.
执行如下语句:
pip install cffi --user -U
5.3 dnspython 版本不匹配
ERROR: ipapython 4.6.5 has requirement dnspython>=1.15, but you'll have dnspython 1.12.0 which is incompatible.
执行如下语句:
pip install dnspython --user -U
5.4 python-ldap 版本不匹配
ERROR: ipapython 4.6.5 has requirement python-ldap>=3.0.0b1, but you'll have python-ldap 2.4.15 which is incompatible.
执行如下语句:
pip install --upgrade python-ldap --user -U
5.5 subprocess32 卸载失败
ERROR: Cannot uninstall 'subprocess32'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
执行如下语句:
pip install docker-compose --ignore-installed subprocess32
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~