From 7b378a5300aa32196d555e39863074913877059c Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Fri, 10 Jul 2020 16:09:57 -0700 Subject: [PATCH] Add missing `-r` to pip install call. Issue #913 Signed-off-by: Henner Zeller --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e8d722b6147c2..c9035be546e2f 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,11 @@ Initialize the submodules: $ git submodule update --init --recursive ``` -Install all the python dependencies: +Install all the python dependencies and make sure the installed binaries can be called. -``` -pip3 install --user conf/requirements.txt +```bash +pip3 install --user -r conf/requirements.txt +export PATH=~/.local/bin:$PATH ``` Build tools (optional, tools from `PATH` can be used): @@ -51,7 +52,7 @@ After creating a new test case it must be correctly tagged: * `name` - must be unique and should be directly related to what the test case covers. * `description` - should provide a short description that will be visible in the report page. * `should_fail_because` - must be used if the test is expected to fail and should contain the reason of failure. -* `files` - is a list of files used by this test case, can be omitted to use only the main file with metadata. +* `files` - is a list of files used by this test case, can be omitted to use only the main file with metadata. * `incdirs` - can be used to provide a list of include directories, can be omitted to use only the default ones. * `top_module` - optional, allows to specify which module is the top one. * `tags` - tag must be used to specify which part of SystemVerilog specification this test case covers.