How to install the Six module in Python2.7

前端 未结 3 614
渐次进展
渐次进展 2021-01-11 13:53

I am using Python 2.7 and trying to use dateutil as follows:

from dateutil import parser as _date_parser

However, I get the fo

3条回答
  •  天涯浪人
    2021-01-11 14:37

    You need to install this

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

    If you still don't know what pip is , then please also google for pip install

    Python has it's own package manager which is supposed to help you finding packages and their dependencies: http://www.pip-installer.org/en/latest/

提交回复
热议问题