我需要在 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'
我不知道出了什么问题,有人可以帮助我吗?