我想在 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 ...