I'm working with Django for python. I've tried to install Markdown 2.0.3 for python from here http://pypi.python.org/pypi/Markdown but it only has a windows 32 bit version and I have windows 7 64 bit.

When trying to install the 32 bit version an error appears:

No python installation found in the registry

I do have python 2.7 that works perfectly with Django.

Do you have any suggestions?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

There is no 64 or 32 bit version of this module. Markdown is a pure-python module and you can install it that way. If the .exe doesn't work for you for some reason, you can always download the .zip version, unpack and run python setup.py install in that directory (provided that python is in your PATH)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.