Search code examples
pythondatetimeeasy-installpython-modulepython-datetime

No datetime module in python how to install via easy_install?


I can find the module https://pypi.python.org/pypi/DateTime

But I don't know the command to install via easy_install. I'm getting a no module named datetime error and so I need to get this installed.


Solution

  • Module names are case sensitive. easy_install DateTime works for me:

    enter image description here