From 48d6ba276613c435e7f10f76d3fe2fd4a6463e9c Mon Sep 17 00:00:00 2001 From: Konrad Bucheli Date: Mon, 26 Feb 2024 11:14:02 +0100 Subject: [PATCH] pip modules can soon me installed via Hiera --- admin-guide/configuration/packages.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/admin-guide/configuration/packages.md b/admin-guide/configuration/packages.md index bedac529..be01e574 100644 --- a/admin-guide/configuration/packages.md +++ b/admin-guide/configuration/packages.md @@ -70,10 +70,18 @@ Note that this tag can be combined with the `latest` and `absent` tag. RHEL 8 introduced the concept of [module streams](https://docs.pagure.org/modularity/). A specific stream can be selected with the `stream` tag: ``` -base::pkg_group::nodejos: +base::pkg_group::nodejs: - 'nodejs:stream=12' ``` +## Install Python Modules with `pip` + +The `pip` tag can be used to install Python module using `pip`: +``` +base::pkg_group::my_pip_modules: + - 'gitinfo:pip' +``` + ## Remove Packages To remove an already installed package, append the `:absent` tag to the package name in the package group: