Merge "Correct git-review install in CentOS 7 quick-start"

This commit is contained in:
Zuul
2019-07-17 22:51:47 +00:00
committed by Gerrit Code Review

View File

@@ -31,22 +31,31 @@ Before you start, ensure that some needed packages are installed.
.. code-block:: shell
# Red Hat / Fedora / CentOS:
# Red Hat / CentOS:
sudo yum install epel-release
sudo yum update
sudo yum install docker docker-compose git python-pip
sudo pip install git-review
# Fedora:
sudo yum install docker docker-compose git
sudo python3 -m pip install git-review
# OpenSuse:
sudo zypper install docker docker-compose git
sudo python3 -m pip install git-review
# Ubuntu / Debian:
sudo apt-get install docker-compose docker.io git python3-pip
sudo python3 -m pip install git-review
# Start and Enable the docker service on Fedora / CentOS
# Red Hat / OpenSuse / Ubuntu / Debian:
sudo python3 -m pip install git-review
sudo systemctl enable docker.service
sudo systemctl start docker.service