Skip to content

Commit a459e99

Browse files
committed
Updated addons page
1 parent b3f763a commit a459e99

1 file changed

Lines changed: 26 additions & 13 deletions

File tree

content/download/addons.en.md

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
---
22
title: "Addons"
3-
date: 2025-05-21T11:02:05+0600
3+
date: 2026-07-21
44
description: "Download GRASS addon extension modules"
55
weight:
66
categories: [nl]
77
layout: "addons"
88
---
99

10-
### Quick links
10+
There is a [growing list of GRASS addons](/grass-devel/manuals/addons/)
11+
available which are not (yet) part of the core software package.
12+
They can be easily installed.
1113

12-
[ [Overview](#overview) | [Beginner users](#beginner-users) | [Power users](#power-users) ]
14+
## Install with the GRASS GUI
1315

14-
## Overview {#overview}
15-
16-
There is a [growing list of GRASS addons](/grass8/manuals/addons/) available which are not (yet) part of the core software package. They can be easily installed.
17-
18-
## Beginner users {#beginner-users}
19-
20-
We recommend to use the [wxGUI](https://grasswiki.osgeo.org/wiki/WxGUI) [Extension Manager](https://grasswiki.osgeo.org/wiki/WxGUI#Extension_Manager) to install Addons.
16+
We recommend to use the [wxGUI](https://grasswiki.osgeo.org/wiki/WxGUI)
17+
[Extension Manager](https://grasswiki.osgeo.org/wiki/WxGUI#Extension_Manager)
18+
to install Addons.
2119
In the main menu:
2220

2321
`Settings -> Addon extensions -> Install extensions from addons`
@@ -26,14 +24,29 @@ In the main menu:
2624
src="/images/extension_manager_gui.png"
2725
alt="GRASS Extension Manager"
2826
caption="GRASS Extension Manager"
29-
class="ma0 w-80"
27+
class="ma0 w-60"
3028
>}}
3129
32-
You can also use the command line, for example:
30+
## Install from the command line
3331

3432
g.extension extension=r.fuzzy.system
3533

36-
## Power users {#power-users}
34+
## Install with Python
35+
36+
Addons can also be installed from the Python using either the `grass.script`
37+
or `grass.tools` modules. For example, to install the `r.fuzzy.system`
38+
addon with `grass.script`:
39+
40+
import grass.script as gs
41+
gs.extension(extension='r.fuzzy.system')
42+
43+
or with `grass.tools`:
44+
45+
from grass.tools import Tools
46+
tools = Tools()
47+
tools.g_extension(extension='r.fuzzy.system')
48+
49+
## Install from source
3750

3851
The Addons source code is also hosted in [GitHub](https://github.com/OSGeo/grass-addons):
3952

0 commit comments

Comments
 (0)