I am using Python 2.7 and trying to use dateutil as follows:
dateutil
from dateutil import parser as _date_parser
However, I get the fo
here's what six is:
pip search six six - Python 2 and 3 compatibility utilities
to install:
pip install six
though if you did install python-dateutil from pip six should have been set as a dependency.
python-dateutil
N.B.: to install pip run easy_install pip from command line.
easy_install pip