From cdaf743435f3b0c75645f7419daf73f54dbd2039 Mon Sep 17 00:00:00 2001 From: Austin Taylor Date: Thu, 4 Jan 2018 18:48:52 -0500 Subject: [PATCH] Readme update --- README.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 351febe..1991ee1 100644 --- a/README.md +++ b/README.md @@ -42,24 +42,27 @@ Requirements * Vulnerability Scanner * Optional: Message broker such as Kafka or RabbitMQ -Install Requirements +Install Requirements (may require sudo) -------------------- - +**First, install dependant modules** ```python -Install dependant modules cd deps/qualysapi python setup.py install - -Using requirements file: -sudo pip install -r /path/to/VulnWhisperer/requirements.txt - -cd /path/to/VulnWhisperer -sudo python setup.py install ``` +**Second, install requirements** + +```python +pip install -r /path/to/VulnWhisperer/requirements.txt +cd /path/to/VulnWhisperer +python setup.py install +``` + +Now you're ready to pull down scans. (see run section) + Configuration -----