1<!--
2THE INSTALLATION SECTION IS GENERATED
3
4Do not edit here, but in docs/installation/.
5
6-->
7{% for platform, tools in structure %}
8    - [{{ platform }}](#{{ platform.lower() }}){% endfor %} {# <= keep `endfor` here to prevent unwanted `\n` #}
9
10{% for platform, tools in structure %}
11
12    ### {{ platform }}
13
14    {% for tool in tools %}
15        #### {{ tool.title }}
16
17        {% if tool.note %}
18            {{ tool.note }}
19        {% endif %}
20
21        {% if tool.links.setup %}
22            To install [{{ tool.name }}]({{ tool.links.homepage }}), see [its installation]({{ tool.links.setup }}).
23        {% endif %}
24
25        ```bash
26        # Install httpie
27        $ {{ tool.commands.install|join('\n$ ') }}
28        ```
29
30        ```bash
31        # Upgrade httpie
32        $ {{ tool.commands.upgrade|join('\n$ ') }}
33        ```
34    {% endfor %}
35
36{% endfor %}
37<!-- /GENERATED SECTION -->
38