Note: It is possible to install more Python modules using the pip standard way of python
<GiD directory>\scripts\tohil\python -m pip install <module>
e.g. to install the KratosMultiphysics module version 9.2:
<GiDdirectory>/scripts/tohil/python -m pip install KratosMultiphysics-all==9.2
Note: Kratos is is a framework for building parallel multi-disciplinary simulation: https://github.com/KratosMultiphysics
The pip program is located at <GiD>\scripts\tohil\python\scripts\pip.exe
modules will be located at
<GiD>\scripts\tohil\python\lib\site-packages
Note: probably must run pip in a console opened in Windows ‘as administrator’ (otherwise Windows doesn’t allow to copy the files if GiD is installed in ‘Program files’ as usual). In Linux do it as ‘sudo’
Some Python modules that look interesting for GiD purposes
NURBS-Python (geomdl) https://github.com/orbingol/NURBS-Python (pure-scripting use of NURBS)
pythonOCC https://dev.opencascade.org/project/pythonocc (Python wrap of C++ OpenCascade CAD)
vtk https://vtk.org (Python wrap of C++ Vtk scientific visualization library).
SciPy https://scipy.org (fundamental algorithms for scientific computing)
SymPy https://docs.sympy.org/latest/modules/geometry/index.html (library for symbolic mathematics)
PyMesh https://pymesh.readthedocs.io/en/latest (mesh processing library)
...