博客地址:http://home.cnblogs.com/u/zengjianrong/

python3升级后的报错

AttributeError: module ‘collections‘ has no attribute ‘Mapping‘

将collections替换为collections.abc即可

 

比如

from collections import Mapping
# 替换为
from collections.abc import Mapping


import collections 
# 替换为
import collections.abc as collections

 

posted @ 2024-03-07 20:30  black_man  阅读(17)  评论(0编辑  收藏  举报