I am trying to run a script using backport Enumfor python 2.7.8 via Cygwin.
When the script is executed, it throws a general error Import Error: No module named Enum.
pip-2.7 install enum34 says it is already installedpip-2.7 install enum34 --upgrade gave the same errorpython --version shows 2.7.8pip freeze shows enum=1.0.4pip uninstall enum34 / pip install enum34 made no difference.
What can I try next?
source
share