From 61b0d6020009aff199ecb3e9aa964da73dd7fb92 Mon Sep 17 00:00:00 2001 From: Ammar Nejati <a.nejati@fz-juelich.de> Date: Sat, 14 May 2022 21:20:03 +0200 Subject: [PATCH] Doc>Python scripting: Add instructions to install the Python package ('wheel') --- hugo/content/py/_index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hugo/content/py/_index.md b/hugo/content/py/_index.md index cf0616a8d09..535ccb3d15c 100644 --- a/hugo/content/py/_index.md +++ b/hugo/content/py/_index.md @@ -25,5 +25,16 @@ one can {{< figscg src="nodes_pycharm_ide.png" width="500" class="center" caption="A BornAgain script running in the PyCharm IDE.">}} + +## Installing the Python package +The installer for any supported platform includes, among others, a Python package ('wheel'); +for instance, for Python 3.9, the package can be found under `python/3.9/wheel` folder. + +The package can be installed via the standard Python's `pip`; e.g., +``` +python3 -m pip install <BornAgain-wheel-file> +``` +For further options, consult [pip's documentation](https://pip.pypa.io/en/stable). + Read on: {{% children %}} -- GitLab