我想在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 ...
答案 0 :(得分:0)
请改为尝试:
import sys
sys.path.append("/path/to/my/directory")
import hello_world