一、安裝步驟 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 安裝成功。