0

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

4

1 回答 1

0

试试这个:

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

import hello_world
于 2014-12-03T13:42:25.633 回答