summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/development/unit-testing.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/development/unit-testing.txt b/doc/development/unit-testing.txt
index a4ec2ad5c..926275871 100644
--- a/doc/development/unit-testing.txt
+++ b/doc/development/unit-testing.txt
@@ -86,13 +86,16 @@ instance, would be:
.. code-block:: bash
- yum -y update
- yum -y install swig pylint
+ sudo yum -y update
+ sudo yum -y install swig pylint
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
sudo yum -y install libselinux-python pylibacl python-inotify \
PyYAML
fi
+You could install these requirements using pip, but you'll likely need
+to install a great many development packages required to compile them.
+
Next, install required Python packages:
.. code-block:: bash