ImportError:在Mac Python 2.7.10上没有名为enum的模块

时间:2019-07-01 17:22:35

标签: python python-2.7 enums macos-mojave usdz

我已经尝试在Mac上安装enumenum34aenum,但是无法将这些软件包导入到我的代码或交互式shell中。 但是我可以在pip freeze上找到这些软件包。

基本上我想运行https://github.com/kcoley/gltf2usd

iMAC:Source JK$ pip install enum
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
Collecting enum
Requirement already satisfied: setuptools in /usr/local/lib/python2.7/site-packages (from enum) (41.0.1)
Installing collected packages: enum
Successfully installed enum-0.4.7

from enum import Enum
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named enum

1 个答案:

答案 0 :(得分:0)

我找不到任何解决方案,但现在,我将 https://bitbucket.org/stoneleaf/enum34/src/default/enum/__init__.py 中的枚举复制到了本地文件夹中。