欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

CentOS 7.x 安装 Docker-Compose

程序员文章站 2022-04-13 15:50:11
一、安装步骤 1. 添加企业版附加包。 2. 安装 PIP。 3. 更新 PIP。 4. 安装 Docker Compose 二、可能遇到的问题 在执行 命令的时候可能会提示以下内容: 这个时候,你需要执行以下命令强制重新安装 request。 安装完成之后,Docker Compose 安装成功。 ......

一、安装步骤

  1. 添加企业版附加包。

    yum -y install epel-release
  2. 安装 pip。

    yum -y install python-pip
  3. 更新 pip。

    pip install --upgrade pip
  4. 安装 docker compose

    pip install docker-compose

二、可能遇到的问题

在执行 pip install docker-compose 命令的时候可能会提示以下内容:

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.

这个时候,你需要执行以下命令强制重新安装 request。

pip install -i requests==2.9

安装完成之后,docker-compose 安装成功。