Python中的resource_stream()错误

时间:2017-05-06 02:14:51

标签: python

我有以下Python文件结构:

package1
    +-- config.cfg
    +-- system.py

然后,system.py使用

访问config.cfg
with pkg_resources.resource_stream(__name__, 'config.cfg') as fp:
     ...

这个代码在我的PyCharm IDE中运行正常但是当我将代码捆绑到一个蛋中然后运行" Python egg_file"时,我收到以下错误:

IOError:[Errno 20]不是目录:' package1 / config.cfg'

我尝试修复此错误但有几个错误,但没有运气...... :(

0 个答案:

没有答案