2

I am attempting to use the pyexcel-ods library which I have downloaded from here: https://pypi.python.org/pypi/pyexcel-ods

Calling 'pip install pyexcel-ods' as instructed or 'python setup.py install' results in the following output:error printout. As you can see the error seems to occur when the program attempts to import a module named _md5.

What would the correct method of installation be? Alternatively, is there a better way I can read information in from a ods file?

Shani de Leeuw
  • 171
  • 1
  • 11
  • 4
    See this answer: http://stackoverflow.com/questions/10306531/python-importerror-no-module-named-md5 TL:DR: Your Python installation was probably not built with the necessary SSL support. – zxq9 Nov 24 '15 at 23:26

1 Answers1

0

No module md5(.py)

Install pycrypto with pip, or install pycrypto with your 'OS Package Mangement' : "python-crypto"

https://pypi.python.org/pypi/pycrypto


Knud Larsen
  • 5,753
  • 2
  • 14
  • 19