在paraview中导入自制的python函数

时间:2014-11-28 13:40:04

标签: python python-2.7 paraview

我想在paraview中包含的python shell中导入基本函数。我试过了:

import os
os.chdir('/path/to/my/directory')
import hello_world

得到了结果:

Traceback (most recent call last):
File "<console>", line 1, in <module>
NameError: name 'hello_world' is not defined

我在目录中有一个hello_world.py ...

1 个答案:

答案 0 :(得分:0)

请改为尝试:

import sys
sys.path.append("/path/to/my/directory")

import hello_world