使用本地目录中的numpy

时间:2012-06-18 15:56:32

标签: python numpy condor

有没有办法从本地目录使用numpy而不将目录添加到python的路径?我问,因为我在没有安装numpy的机器上运行condor上的工作。我无法直接向这些机器添加numpy,我不相信我可以改变这些机器上的路径。我已经看过How to tell Condor to dispatch jobs only to machines on the cluster, that have "numpy" installed on them?关于确定机器是否有numpy的问题,如果可能的话,我更愿意在所有机器上运行,而且我不确定我是否可以改变机器的classId。

1 个答案:

答案 0 :(得分:3)

您应该始终能够使用

import sys
sys.path.append("/path/to/local/numpy")