在Python 3.5中,我收到以下导入错误:
ImportError: cannot import name 'Config'
当我尝试
时from utils import Config
我已经检查过包utils是"管道#34;。这对我很好奇,因为几个月前我尝试从utils导入Config时没问题。
答案 0 :(得分:1)
这是因为Config
包中没有utils
模块。
如果你在help("utils")
之后在python shell中尝试import utils
,你会注意到utils有这些模块 -
bool,日期,词组,枚举,列表,数学和对象,但不是Config
。
根据this doc(虽然已过时),但Config
使用了from config import Config
。您可能想尝试pip install config
并查看它是否适用于您的python版本。
如果无效,您可以随时使用configparser
。