any idea as to why? thanks.
I think both problem are related. I have setuptool version .6C11
install and I am running python 2.5 on window OS. Is any one else
having similar issue with setuptool version .6C11? Thanks.
Using c:\python26\lib\site-packages\docutils-0.4-py2.6.egg
Because this distribution was installed --multi-version, before you
can
import modules from this package in an application, you will need to
'import pkg_resources' and then use a 'require()' call similar to one
of
these examples, in order to select the desired version:
pkg_resources.require("docutils") # latest installed version
pkg_resources.require("docutils==0.4") # this exact version
pkg_resources.require("docutils>=0.4") # this version or higher
Processing dependencies for docutils==0.4
Finished processing dependencies for docutils==0.4
I hope this helps other having the similar issue as me.