AttributeError: module ‘importlib_resources‘ has no attribute ‘path‘ 解决方案
问题描述
with importlib_resources.path("xx", fname) as p:
AttributeError: module 'importlib_resources' has no attribute 'path'
博主使用的是python=3.9,看importlib_resources在importlib-resources · PyPI中的介绍,开始猜测问题出在python和importlib_resources的版本对应不上。
解决方案
根据PyPI中的介绍,python3.9应当使用1.3版本的importlib_resources。
pip install importlib-resources==1.3.0
问题解决!