自学内容网 自学内容网

Environment Modules安装配置

Environment Modules安装配置

Environment Modules是一款用来管理计算机软件环境的软件,通过简单的命令来控制计算机环境变量。本文接受该软件的安装和配置方法

系统: Linux OpenSUSE 15.6
软件版本: modules 5.5
依赖: gcc 7.5.0 以及 tcl 8.5

tcl以及gcc安装

省略

modules安装

#下载软件安装包
curl -LJO https://github.com/cea-hpc/modules/releases/download/v5.5.0/modules-5.5.0.tar.gz
#解压缩
tar xfz modules-5.5.0.tar.gz
#进入原码目录
cd modules-5.5.0
#配置安装信息
#/soft/modules是用户打算安装modules软件的目录
#/soft/tcl/lib是tcl程序的地址,该地址需要包括tclConfig.sh文件
./configure --prefix=/soft/modules --with-tcl=/soft/tcl/lib
#软件编译
make
#软件安装
sudo make install

设置软件自启动

#方法一:
ln -s /soft/modules/init/profile.sh /etc/profile.d/modules.sh
#方法二:
echo `source /soft/modules/init/profile.sh` >> ~/.bashrc

重启计算机以使得上面的配置生效

环境文件配置

首先查看modulefiles的地址
使用module avail命令查看当前的环境地址文件有哪些,并且存储在哪里。在我的系统之下,modulefiles文件在/soft/modules/modulefiles目录下面。

新建配置文件:
例子1(openmpi):

#%Module 1.0
#
#  OpenMPI module for use with 'environment-modules' package:
#
module-whatis "openmpi 4.1.0"
conflict                openmpi

setenv                  MPI_DIR         /soft/openmpi/4.1.0
setenv                  MPI_BIN         $MPI_DIR/bin
setenv                  MPI_INCLUDE     $MPI_DIR/include
setenv                  MPI_LIB         $MPI_DIR/lib
setenv                  MPI_MAN         $MPI_DIR/share/man
setenv                  MPI_COMPILER    openmpi-x86_64
setenv                  MPI_SUFFIX      _openmpi

prepend-path            PATH            $MPI_DIR/bin
prepend-path            LD_LIBRARY_PATH $MPI_DIR/lib
prepend-path            MANPATH         $MPI_DIR/share/man

例子2(GNU Version 7):

#%Module1.0#####################################################################

proc ModulesHelp { } {

puts stderr " "
puts stderr "This module loads the GNU compiler collection"
puts stderr " "
puts stderr "Consult the man pages for detailed information"
puts stderr "on the commandline syntax and compiler options."
puts stderr " "

puts stderr "\nVersion 7\n"

}
module-whatis "Name: GNU Compiler Collection"
module-whatis "Version: 1.4"
module-whatis "Category: compiler, runtime support"
module-whatis "Description: GNU Compiler Family (C/C++/Fortran for x86_64)"
module-whatis "URL: http://gcc.gnu.org"

set     version                     7
prepend-path    MODULEPATH          /usr/share/lmod/moduledeps/gnu-7
prepend-path    PATH    /usr/lib/hpc/compiler/gnu/7/bin
# nothing to do since gcc is in the default path

family "compiler"

基本命令

#查看环境
module avail
#加载环境
module load gnu
#退出环境
module unload gnu
#显示已经加载的环境
module list

原文地址:https://blog.csdn.net/weixin_45613751/article/details/144365504

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!