Wing under Enthought Deployment Manager EDM
How do I get Wing to run under an Enthought Deployment Manager (EDM) context?
Background: we (our company) do our development under edm, which sets up its own Python installation. When I develop under Spyder, startup looks like this
$ which python/usr/bin/python
$ edm shell -e edm1
Starting new shell in EDM environment 'edm1'.
Type 'exit' or 'Ctrl+D' to return.
$ which python
/Users/smithd91/.edm/envs/edm1/bin/python
$ spyder
&Now Spyder inherits the new Python location. I just installed Wing (on a Mac), and it fired up directly, without the mediation of the shell. Looking at the sys.path, I see/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7etc., which is yet another Python location.
How do I get Wing to use the Python environment set by EDM?
Comments