This seems to work well and doesn't require original source code mods:
In your site-packages directory, create a file called "Numeric.py " (remember that python IS case sensitive). Two lines in that file should be all it takes to allow importers of the Numeric package to function properly:
To test this I used
In your site-packages directory, create a file called "Numeric.py " (remember that python IS case sensitive). Two lines in that file should be all it takes to allow importers of the Numeric package to function properly:
Code:
from numpy import oldnumeric globals().update(oldnumeric.__dict__)
Code:
import Numeric help(Numeric)
Comment