I'm trying to enable docutils for django on windows 7. I've enabled the links in urls.y and settings.py and downloaded and installed the latest snapshot of docutils. However every time I try to access the documentation link in the admin I get a page asking me to install docutils.

Any ideas?

Thanks

link|improve this question
feedback

1 Answer

I guess django tries to do

import docutils

And this fails. Django catches the exception and displayes this message to you.

Please try to get the real exception. You could insert the above line in one of your views:

def myview(request, ...):
    import docutils

I hope django shows you the ImportError. Post it here, if still can't fix it.

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.