小编skw*_*ang的帖子

Linux bash 脚本中的模块加载命令

我需要在 HPC 集群中执行 Python 脚本。不幸的是,默认的python版本只有2.6.6,并且没有numpy和scipy。

我可以在命令行中加载这些模块

#module load /home/hw1u16/modules/2.7.3
Run Code Online (Sandbox Code Playgroud)

module load /home/hw1u16/modules/1.6.2
Run Code Online (Sandbox Code Playgroud)

但是,当我像这样编写 bash 脚本时

module load /home/hw1u16/modules/2.7.3
module load /home/hw1u16/modules/1.6.2
python /home/hw1u16/project/trainAgent.py
Run Code Online (Sandbox Code Playgroud)

它警告我

ModuleCmd_Load.c(200):ERROR:105: Unable to locate a modulefile for '/home/hw1u16/modules' ModuleCmd_Load.c(200):ERROR:105: Unable to locate a modulefile for '/home/hw1u16/modules' 我不知道出了什么问题,有人可以帮助我吗?

python linux bash environment-modules

6
推荐指数
2
解决办法
4万
查看次数

标签 统计

bash ×1

environment-modules ×1

linux ×1

python ×1