AttributeError:模組「enum」沒有屬性「IntFlag」
問題:
問題:問題:
問題:
問題:<code class="python">import enum print(enum.__file__)</code>
pip uninstall -y enum34<p></p>分析:IntFlag 類別是 Python 枚舉功能不可或缺的一部分。它不可用可能表明安裝的 enum 模組不是標準庫版本。 解決方案:調查 enum34 套件的安裝狀態,因為它經常覆蓋標準庫枚舉模組。若要進行驗證,請檢查 enum.__file__ 的值。 如果路徑指向標準函式庫目錄之外(例如,指向 /usr/local/lib/python3.6/ 等第三方套件) enum34.py),卸載 enum34。 如果需要與 Python 版本 3.4 相容,請考慮使用 enum-compat 套件,它僅為舊版 Python 安裝 enum34缺少標準函式庫枚舉模組的版本。
以上是為什麼我在 Python 3.6.1 中收到「AttributeError: module \'enum\' has no attribute \'IntFlag\'\」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!