我正在使用Python 2.7并尝试使用dateutil如下:
from dateutil import parser as _date_parser
Run Code Online (Sandbox Code Playgroud)
但是,我收到以下错误:
Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
from dateutil import parser as _date_parser
File "C:\Python27\Lib\dateutil\parser.py", line 24, in <module>
from six import text_type, binary_type, integer_types
ImportError: No module named six
Run Code Online (Sandbox Code Playgroud)
能告诉我这个six模块是什么以及如何在Windows 7机器上安装它?