嘿朋友我将我的 python 路径设置为
/home/rohit/test
这是我的测试文件夹的结构
test/
__init__.py
meetinghandler/
__init__.py
meetinghandler.py
db/
__init__.py
models.py
setting.py
manage.py
我的问题是当我尝试导入时
from test.meetinghandler import meetinghandler
从models.py我收到错误,即;
ImportError:没有名为 test.meetinghandler 的模块
请帮我解决我做错了什么。