From f92d83f61974d2cd38432ac3673ef977bf6c7580 Mon Sep 17 00:00:00 2001 From: iMHLv2 Date: Wed, 6 Oct 2021 12:48:52 -0500 Subject: [PATCH] add the missing -r --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e01b3b03..c51bd060c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ the Volatility Software License (VSL). See the [LICENSE](LICENSE.txt) file for m Volatility 3 requires Python 3.6.0 or later. To install the most minimal set of dependencies (some plugins will not work) use a command such as: ```shell -pip3 install requirements-minimal.txt +pip3 install -r requirements-minimal.txt ``` Alternately, the minimal packages can be installed automatically when Volatility 3 is installed. However, as noted in the Quick Start section below, Volatility 3 does not *need* to be installed prior to using it. @@ -34,7 +34,7 @@ python3 setup.py install To enable the full range of Volatility 3 functionality, use a command like the one below. For partial functionality, comment out any unnecessary packages in [requirements.txt](requirements.txt) prior to running the command. ```shell -pip3 install requirements.txt +pip3 install -r requirements.txt ``` ## Downloading Volatility