I've updated a Python egg that is only being used locally. The update proceeded correctly and installed into /usr/lib/python2.5/site-packages/eggName-UpdatedVersionNumber-py2.5.egg
However, when I open iPython and try to import the egg, I still get the old version.
Running egg_name.__file__ gives me:
/usr/local/FOLDER/lib/python2.5/site-packages/eggName-OldVersionNumber-py2.5.egg/egg/__init__.pyc
Running easy_install --upgrade EGG shows:
... EGG UpdatedVersionNumber is already the active version in easy-install.pth\
Any idea on how to get the system to call the new version installed at /usr/lib/python2.5/site-packages/...?