【Python】django-admin报错ImportError: cannot import name ‘Iterator‘ from ‘collections‘

django-admin报错

ImportError: cannot import name ‘Iterator’ from ‘collections’(C:\Users\admin\AppData\Local\Programs\Python\Python310\lib\collections_init_.py)

原因因为python3.10版本,库collections 停用了,其中就包含了 pygal._compat.py 中的 from collections import Iterator;可以换个低版本python。

你可能感兴趣的:(Python,python)