> Ok, so the latest version of Envisage (as of this morning ;^) requires the > following:- > > enthought.envisage_3.0 > enthought.traits_3.0 > enthought.etsconfig_2.1 > enthought.util_3.0
Cool, thanks, I installed them and tried running the MOTD example in enthought.envisage_3.0/examples/MOTD/dist by running 'python run.py', and it fails on an error looking for a module named configobj. I guess had I been running a real easy_install it would have picked up the dependency on ConfigObj. I didn't have it installed before this. Once I did 'easy_install ConfigObj', and in case anyone else is interested, here's what I had to do to get the MOTD example to work: (but there's probably an easier way) cd enthought.envisage_3.0/examples/MOTD/src/acme.motd python setup.py bdist_egg cp dist/acme.motd-0.1a1-py2.5.egg ../../dist/eggs/ cd ../acme.motd.software_quotes/ python setup.py bdist_egg cp dist/acme.motd.software_quotes-0.1a1-py2.5.egg ../../dist/eggs/ cd ../../dist python run.py > If you want the workbench plugin (ie. the plugin that allows you to build use > interfaces startlingly like the Eclipse workbench ;^) Then that will require a > bit more work, and I'll hunt down the dependencies for that.... If you have time that would be cool, but no rush. Thanks for the help, Rob
