我正在使用Python 2.7,并尝试使用dateutil,如下所示:

from dateutil import parser as _date_parser

但是,出现以下错误:
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

您能否让我知道six模块是什么以及如何将其安装在Windows 7计算机上?

最佳答案

你需要安装这个

https://pypi.python.org/pypi/six

如果您仍然不知道什么是点子,那么也请在Google上搜索pip install
Python拥有自己的软件包管理器,可以帮助您找到软件包并
它们的依赖关系:
http://www.pip-installer.org/en/latest/

关于python - 如何在Python2.7中安装Six模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21990581/

10-09 22:48