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