-
Notifications
You must be signed in to change notification settings - Fork 199
Python
Mikhail Yakshin edited this page Mar 23, 2016
·
2 revisions
enums implementation in Python requires a enum support as described in PEP-0435. This support is available out of the box in standard libraries since Python v3.4, or since v2.4 using [enum34] PyPi compatibility layer.
- On Debian / Ubuntu, this library can be installed with
sudo apt-get install python-enum34
- Otherwise, one can use just
sudo pip install enum34