Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/tutorials/get_started/fast_track_grass_and_python.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ i.e., there's an existing GRASS project.
Be sure you also have the following Python libraries installed in your
environment: `folium` or `ipyleaflet`, `numpy`, `seaborn`, `matplotlib`, `pandas`.

The first thing we need to do is to
*import GRASS python packages*. In order to do so, we need to
*add GRASS python package to PATH*. Let's see how we do that.
The first thing we need to do (for some environments) is to
*import GRASS Python packages*. In order to do so, we need to
*add GRASS Python package to path*. Let's see how we do that.

```{python}
# import standard Python packages
Expand All @@ -114,14 +114,14 @@ from pathlib import Path
```

```{python}
# check where GRASS python packages are and add them to PATH
# check where GRASS Python packages are and add them to path
sys.path.append(
subprocess.check_output(["grass", "--config", "python_path"], text=True).strip()
)
```

```{python}
# import GRASS python packages
# import GRASS Python packages
import grass.script as gs
import grass.jupyter as gj
```
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading