3

我第一次在集群上运行作业。我使用以下命令运行它:

qsub -cwd -S /usr/bin/python myScript.py

我有一个以以下开头的 python 脚本:

import time
import anotherScript

我得到的错误:

Traceback (most recent call last):
  File "/opt/sge62/default/spool/hpc01/job_scripts/487174", line 11, in <module>
    import anotherScript
ImportError: No module named anotherScript

anotherScript.py位于同一目录中myScript.py

我能做些什么来解决这个问题?将不胜感激任何帮助

4

1 回答 1

4

好吧,问题解决了sys.path.append(currentWorkingDirectory)。但是,这绝对不是一个好方法。

于 2013-04-26T12:31:32.013 回答