我有一个类似下面的项目目录结构
|project
|-__init__.py
|-src
|- __init.py__
|- features
|- __init.py__
|- clean_data.py
|-notebooks
|- notebook.ipynb
主目录称为project,在该目录下有两个目录src和Notebooks。
我想在我的Notebook.ipynb文件中的功能目录(位于src下)下导入模块clean_data.py。
我尝试过:
from ..src.features import clean_data
因为所有目录都与每个目录中的init.py文件一起打包。
但是会引发错误。为了解决这个问题花了很多精力,但是不确定为什么我得到了错误。同样根据本文,我似乎可以正确访问模块
mportError Traceback (most recent call last)
<ipython-input-23-11fd29e06b4c> in <module>()
----> 1 from ..src.features import clean_data
ImportError: attempted relative import with no known parent package
答案 0 :(得分:0)
这是我的代码的一部分,请看以下内容:
from domain_pricing.domains import *
from domain_pricing.conversion_rate import *
我要从domains.py
文件夹导入conversion_rate.py
和domain_pricing
。
您应该做的是:
from src.features import clean_data
from src.data import another_module
您不需要.
或..
作为基于Unix的系统路径目录。您需要直接调用该文件夹。