Skip to content

Commit

Permalink
Update installation.rst (#3074)
Browse files Browse the repository at this point in the history
* Update installation.rst

##### SUMMARY
centos8 prefers the usage of dnf instead of yum
ubuntu prefers the use of apt above apt-get for cli 


##### ISSUE TYPE
- Docs Pull Request

+label: docsite_pr

* Update installation.rst

* Update installation.rst
  • Loading branch information
JensTimmerman authored Mar 16, 2021
1 parent 91bc7bf commit bcb4cad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ CentOS 8

.. code-block:: bash
$ sudo yum install -y gcc python3-pip python3-devel openssl-devel python3-libselinux
$ sudo dnf install -y gcc python3-pip python3-devel openssl-devel python3-libselinux
Ubuntu 16.x
-----------

.. code-block:: bash
$ sudo apt-get update
$ sudo apt-get install -y python3-pip libssl-dev
$ sudo apt update
$ sudo apt install -y python3-pip libssl-dev
Pip
===
Expand Down Expand Up @@ -176,14 +176,14 @@ CentOS 8

.. code-block:: bash
$ sudo yum install -y libffi-devel git
$ sudo dnf install -y libffi-devel git
Ubuntu 16.x
^^^^^^^^^^^

.. code-block:: bash
$ sudo apt-get install -y libffi-dev git
$ sudo apt install -y libffi-dev git
Install
-------
Expand Down

0 comments on commit bcb4cad

Please sign in to comment.