From 26eedf7c1a09d5ef8c021061a76de065d67baaad Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 25 Mar 2023 17:19:13 +0800 Subject: [PATCH] docs: Add tips for installing extra dpes Close #24. --- README.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.rst b/README.rst index c7f5043..2469645 100644 --- a/README.rst +++ b/README.rst @@ -109,3 +109,13 @@ commit is not finished yet. See concurrency__ for more details. cancel-in-progress: true __ https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency + +Install extra dependencies +************************** + +For python dependencies, just add them to your ``requirements.txt`` or ``pyproject.toml`` file. + +For non-python dependencies, add a step to your workflow file, and install them with the appropriate tools +(such as apt, wget, ...). See `#24`__ for example. + +__ https://github.com/sphinx-notes/pages/issues/24