目录
module
在计算机集群中,“module” 命令是一种用于管理和加载软件环境的工具。它允许用户在集群中切换和加载不同版本的软件模块,以满足各种应用程序和需求。通过使用 “module” 命令,用户可以轻松地配置自己所需的软件环境,而无需手动设置各种环境变量和路径。
module list
列出当前安装的模块
module av
列出当前系统环境中存在哪些模块
module load
安装指定模块
一般写在.bashrc或.cshrc文件中
module unload
卸载指定模块
module purge
卸载所有模块
module switch [旧模块] [新模块]
替换模块
module whatis [模块名]
查看模块说明
module show [模块名]
查看模块信息
module show synopsys/verdi-P-2019.06-SP1-1
或
module show verdi
参考链接