CentOS 7.x 安装 Docker-Compose
程序员文章站
2024-01-17 12:08:22
一、安装步骤 1. 添加企业版附加包。 2. 安装 PIP。 3. 更新 PIP。 4. 安装 Docker Compose 二、可能遇到的问题 在执行 命令的时候可能会提示以下内容: 这个时候,你需要执行以下命令强制重新安装 request。 安装完成之后,Docker Compose 安装成功。 ......
一、安装步骤
-
添加企业版附加包。
yum -y install epel-release
-
安装 pip。
yum -y install python-pip
-
更新 pip。
pip install --upgrade pip
-
安装 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 安装成功。
下一篇: 构建多页面应用——单个页面的处理