【python】Code ImportError : cannot import name 'mapping' from 'collections'の解決法
cannot import name 'mapping' from 'collections'のエラーを解決できたので備忘録としてディープラーニングのコードで学習させたときにいきなりCode ImportError : cannot import name 'mapping' from 'collections'の表示が。python初心者なのでなんのこっちゃわからずググってみると、解決策に、python3.10特有のエラーなのでダウングレードするとか、from collections import Mappingをfrom collections.abc import Mappingに書き換…
2022/05/21 22:20