[轉]成功解決AttributeError: module ‘enum‘ has no attribute ‘IntFlag‘?

SkyLee708發表於2020-11-09

成功解決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打頭的兩個資料夾即可!

 

 

 


---------------------
作者:一個處女座的程式猿
來源:CSDN
原文:https://blog.csdn.net/qq_41185868/article/details/80599336
版權宣告:本文為作者原創文章,轉載請附上博文連結!
內容解析By:CSDN,CNBLOG部落格文章一鍵轉載外掛

相關文章