third party libraries

This commit is contained in:
gwen 2025-11-07 22:02:28 +01:00
parent 638442273b
commit 55213e18db
2 changed files with 13 additions and 4 deletions

View file

@ -16,8 +16,20 @@ Standard installation
You can use the `pip` python installer, here is the install command:
.. code-block:: text
.. code-block:: bash
pip install rougail
Installation of third-party libraries
-------------------------------------------
First, download the :download:`requirements.txt file: <install/requirements.txt>`
.. literalinclude:: install/requirements.txt
:caption: The :file:`requirements.txt` requirements file
Then in your virtual environment, recursively install the third-party libraries as follows:
.. code-block:: bash
pip install -r requirements.txt --extra-index-url https://test.pypi.org/simple/

View file

@ -120,7 +120,6 @@ Let's add a variable's description, which is not mandatory but which is a good p
:tutorial:`Download this file from the rougail-tutorials git repository <src/tag/v1.1_002/firefox/00-proxy.yml>`
.. type-along:: how to set a value -- the default value
We need to set a value to this `proxy_mode` variable. A first way to do it is *to set a value by default*.
@ -145,8 +144,6 @@ So let's define a variable with a description -- **and a default value**
:tutorial:`Download this file from the rougail-tutorials git repository <src/tag/v1.1_003/firefox/00-proxy.yml>`
.. type-along:: how to set a value -- the assignment
A default value has been set, great. Now how do I assign a value to a variable?