尽管在JUPYTER_PATH变量中指定,但在Jupyter Notebook中导入的模块无法导入其他本地模块

时间:2020-04-22 21:15:23

标签: python import jupyter-notebook

我想在Jupyter Notebook中使用一套本地模块。文件夹结构如下:

/data/jupyter_modules/
            |--- __init__.py
            |---/module_1/
            |       |--- __init__.py
            |       |--- general.py  -- def my_function():
            |
            |---/module_2/
                    |--- __init__.py
                    |--- foo.py   -- from module_1.general import my_function()    <---- Throws Error
                                  -- def my_other_function():

,并且我已将/data/jupyter_modules添加到我的JUPYTER_PATH env变量中。现在,当我执行from jupyter_modules import module_2时,出现一个错误,提示没有名为module_1.general的模块。

当我明确告诉jupyter在该模块所在的文件夹中查找时,为什么看不到module_1?

0 个答案:

没有答案