腾讯云服务器Centos7.6中docker-compose工具安装

Docker安装略。

1、yum -y install epel-release

2、yum -y install python-pip

3、pip install --upgrade pip

4、pip install docker-compose

4.1、pip install cffi==1.6.0

出现报错:

ERROR: cryptography 2.8 has requirement cffi!=1.11.3,>=1.8, but you'll have cffi 1.6.0 which is incompatible.
4.2、yum install python-devel

出现报错:

Running setup.py install for subprocess32 ... error
    ERROR: Command errored out with exit status 1:

4.3、pip install --ignore-installed requests

出现报错:

ERROR: Cannot uninstall 'requests'. 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.

你可能感兴趣的:(腾讯云服务器Centos7.6中docker-compose工具安装)