📜  无法从相邻目录 jupyter notebook 访问模块 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:41.879000             🧑  作者: Mango

代码示例1
import os
import sys
module_path = os.path.abspath(os.path.join('..'))
if module_path not in sys.path:
    sys.path.append(module_path)
# and add __init__.py to the modules