diff options
author | Walt Miner <walt@linux.com> | 2023-12-08 06:41:37 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-12-11 14:45:42 +0000 |
commit | 017911fa1af6f0b9c9feeef72f5ddaaa54f62f60 (patch) | |
tree | 65c918cdf066035c707b33c0652c41859ab98224 | |
parent | ec1467099ece5a2580528c996c6a3d5b4d696596 (diff) |
Added instruction for installing pip in case it is not installed prior to building doc site.quillback_16.93.0quillback_16.92.0quillback/16.93.0quillback/16.92.016.93.016.92.0
BUG-AGL: SPEC-5007
Change-Id: Id79f895bb5b76e55f00bcadeddafd1d3a8f3775c
Signed-off-by: Walt Miner <walt@linux.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/29513
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | docs/07_How_To_Contribute/08_Adding_Documentation.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/07_How_To_Contribute/08_Adding_Documentation.md b/docs/07_How_To_Contribute/08_Adding_Documentation.md index b879cc0..4da6165 100644 --- a/docs/07_How_To_Contribute/08_Adding_Documentation.md +++ b/docs/07_How_To_Contribute/08_Adding_Documentation.md @@ -34,7 +34,13 @@ $ git clone "ssh://<LFID>@gerrit.automotivelinux.org:29418/AGL/documentation" && $ sudo pip install -r requirements.txt ``` -3. Serve locally (default rendered at [127.0.0.1:8000/](127.0.0.1:8000/)): +3. If pip is not already installed then install it + ```sh + $ sudo apt-install python3-pip + ``` + + +4. Serve locally (default rendered at [127.0.0.1:8000/](127.0.0.1:8000/)): ```sh $ sudo mkdocs serve |