Python package to manage module system in HPCs

I'm working in an HPC environment which uses the module system for software-version management. I'm using python for the automation of the installation of a certain software which requires some dependencies.

Do you know if there exists any python package/module to manage the module system? (list available modules, load/unload modules, read modulefiles, etc). I could'n find anything similar.


Have a look at easybuild. It's designed to automate the installation of scientific software and it handles modulefiles so you might be able to find interesting patterns/clues in there.

链接地址: http://www.djcxy.com/p/26288.html

上一篇: 如何编写Python模块/包?

下一篇: Python软件包来管理HPC中的模块系统