pip install enum not working showing the error of 'intflag' doesnt have

孤人 提交于 2021-02-10 06:27:07

问题


pip install Enum is not working is showing the error of AttributeError:module 'enum' has no attribute 'IntFlag'

enter image description here


回答1:


enum34 is the stdlib Enum backport, but it only supports features found up to 3.5. If you want features found in 3.6 you'll need to use aenum1.


1 Disclosure: I am the author of the Python stdlib Enum, the enum34 backport, and the Advanced Enumeration (aenum) library.



来源:https://stackoverflow.com/questions/44745374/pip-install-enum-not-working-showing-the-error-of-intflag-doesnt-have

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!