成功解决AttributeError: module 'enum' has no attribute 'IntFlag'?

网友投稿 1115 2022-05-29

成功解决AttributeError: module 'enum' has no attribute 'IntFlag'?

目录

解决问题

解决思路

解决方法

解决问题

成功解决AttributeError: module 'enum' has no attribute 'IntFlag'?

AttributeError: module 'enum' has no attribute 'IntFlag'?

解决思路

This is likely caused by the package enum34. Since python 3.4 there's a standard library enum module, so you should uninstall enum34, which is no longer compatible with the enum in the standard library since enum.IntFlag was added in python 3.6.

这可能是由包Enum34引起的。因为Python3.4有一个标准库枚举模块,所以您应该卸载Enum34,因为在Python3.6中添加了Enum.Intflag,所以它不再与标准库中的枚举兼容。

解决方法

pip uninstall enum34   #卸载enum34

大功告成!!哈哈!!

网友推荐解决方法:欢迎各路网友,前来共同探讨出错问题,解决bug,共享快乐!

用不了pip的网友,可直接删掉\Lib\site-packages\enum打头的两个文件夹即可!

Python

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:ping 一会通一会不通
下一篇:Vuex实现state mutations actions getters
相关文章