Ubuntu 16.04, Python 2.7 - Importerror: No Module Named Enum
First time using Ubuntu. I installed Anaconda 4.1.1 (Python 2.7). I was trying to use enum but I got an import error. import enum Traceback (most recent call last): File '
Solution 1:
Try pip install enum34
. Enum is in the Python 3 stdlib. enum34
is a backport.
Post a Comment for "Ubuntu 16.04, Python 2.7 - Importerror: No Module Named Enum"