zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Python import上一层级的模块

Python模块 import 一层
2023-09-27 14:25:48 时间

 dataset.py中导入config 

from ..config import ----

    from ..config import IMAGE_MEAN
ImportError: attempted relative import with no known parent package

不知为什么???

import sys

sys.path.append('..')

两个点表示到上一层目录

 

Python import其他层级的模块 - 7tiny - 博客园