从ipython中的另一个文件调用Python函数

时间:2016-02-18 21:44:57

标签: python ipython

我在ipython shell中,无法从其他文件导入函数。 当我尝试:

from my_functions import this_function 

我得到了:

没有名为my_functions的模块

但是如果我尝试从其他文件保存它就可以了。

是的,我在my_functions文件的同一目录中打开了shell

编辑:

import sys
sys.path.append('my/path/to/module/folder')

解决了问题

0 个答案:

没有答案