コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Python】AttributeError: module 'collections' has no attribute 'abc'

概要

AttributeError: module 'collections' has no attribute 'abc'

python-pptx を使おうとしたら実行時に上記のエラーが発生する現象に遭遇した

import collections.abc

上記の import 文を追加したらエラーが発生しなくなった

参考サイト様